$(document).ready(function(){
	
	//Navigation listing hide
	$("#menu li ul").hide();
	
	
	$("#menu li").click(function(){
    if ($("ul li",this).length){
        if ($("ul",this).css("display") == "none"){
			if ($(this).children().attr("href")!='#')
				location.href = $(this).children().attr("href");
			else
				$("ul:first", this).slideDown("fast");
         }
         else{
			$("ul", this).slideUp("fast");
		 }
     }
    else{
        location.href = $("a",this).attr("href");
     }
    return false;
   });
   
     $("#menu a").each(function(){
		var hreflink = $(this).attr("href");
		
		if (hreflink.toLowerCase()==location.href.toLowerCase() || location.href.toLowerCase().search(hreflink.toLowerCase())>=0) {
			$("ul:first",$(this).parents("li")).css({"display":"block"});
			$(this).attr({"class":"active"});
		}
  });
});


