$(document).ready(function(){
	
	$("#cities li").click(function(){
    if ($("ul li",this).length){        
        if ($("ul",this).css("display") == "none"){
            $("ul", this).slideDown("fast");
         }
         else
         $("ul", this).slideUp("fast");
         
     }
    return false;
   });
   
     $("a.menu-ul").each(function(){
		var hreflink = $(this).attr("href");
	
		if (hreflink.toLowerCase()==location.href.toLowerCase() || location.href.toLowerCase().search(hreflink.toLowerCase())>=0) {
			$(this).css({"color":"#7E270E"});
		}
  });
});
