$(document).ready(function(){
	
	$("ul.navigation").find("a").each(function(){
        if(location.href === this.href) {
			/* alert ("location.href:" + location.href + " this.href:" + this.href); */
            $(this).addClass("on").click(function() { 
				if (this.href === location.href) return false; });
        }
	});
	
	
	$('#nav-content ul.sf-menu').supersubs({minWidth:'16',maxWidth:'16',extraWidth:'1'}).superfish();
});
