$(function(){
	$("a").each(function(i){
		if(this.href == location.href){
			$(this).addClass("currentPage");
		}
	});
});
