$(document).ready(function(){
	var subnav= $("#menu li ul");
	subnav.hide();
	 $("#menu a").click(function(){
		  var url=$(this).attr("href");
		 window.location.href=url;	  
		 });
	 $("#menu > li").toggle(function(){
		 if($(this).find("ul").length){
		  $(this).children("ul").slideDown();
		 $(this).css("height", "auto");
		 }
		 },
		 function(){
			  if($(this).find("ul").length){
			 $(this).children("ul").slideUp();
			  
			  }
			 });
	
	});
