
$(document).ready(function(){

	$("ul.second_level").hide();
	$("ul#active_second_level").show();
	$("li.with_sub").mouseover(function(){
	      $("ul", this).slideDown("normal");
	      $(this).css("background","url(\'./img/left_menu_active_bck.jpg\') top right no-repeat");
	      
	});
	
	$("li.with_sub").mouseleave(function(){
		if($(this).attr("id") != "active_top"){
		$(this).css("background","none");
		}
	});
	
	//$("li.with_sub").mouseleave(function(){
	//	if($("ul", this).attr("id") != "active_second_level"){
	//		$("ul", this).slideUp("fast");
	//	}
	//});
		
 });