$(function(){
	
	$("#navWrap").find("a").each(function(){
		this.href == document.URL && $(this).addClass("active");
	})
	
});