// JavaScript Document
$(document).ready(function(){
	
// then, add on state to link
	$("ul#navmenu a.level1").each(function() {
		if ($(this).attr("href") == location.pathname) {
			$(this).addClass("current");
			$(this).next("ul.sublist").show();
			}
	});
	
	$("ul#navmenu a.level2").each(function() {
		if ($(this).attr("href") == location.pathname) {
			$(this).addClass("current");
			$(this).parent().parent().prev().addClass("current");
			$(this).next("ul").show();
			$(this).parent().parent("ul.sublist").show();
			}
	});
	
	$("ul#navmenu a.level3").each(function() {
		if ($(this).attr("href") == location.pathname) {
			$(this).addClass("current");
			$(this).parent().parent().parent().parent().prev().addClass("current");
			$(this).next("ul").show();
			$(this).parent().parent().parent().parent("ul.sublist").show();
			}
	});
	
	
});
