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