//現在のページをハイライト
$("a").each(function(){
if($(this).attr("href")==location.pathname)
$(this).toggleClass("active");
});
これで現在どの位置にいるか、わかりやすくなりますん。
//現在のページをハイライト
$("a").each(function(){
if($(this).attr("href")==location.pathname)
$(this).toggleClass("active");
});