// JavaScript Document
$(document).ready(function(){
						   
						   var url=document.location.pathname;
						   
						   var ind=url.lastIndexOf('/')+1;
						   url=url.substring(ind,url.length);
						   
						   	$("#menu h1").next("ul").hide();
	
	if(url) {
		$("#menu ul a[href$="+url+"]").parent().parent().show();
	} else {
		$("#menu h1:first").next("ul").show();
	}
	
	$("#menu h1").click(function(){
		$("#menu h1").next("ul").slideUp();
		$(this).next("ul").slideToggle();
	});
						   

});

