$(document).ready(function(){
	$('#pro_categ_list ul').hide();
	$('.contract').toggle(function(){
		$(this).next("ul").show();
		$(this).next().children("li:last").css("border-bottom","none");
	},function(){
		$(this).next("ul").hide();
	});
	
	$('#condition').focus(function(){
		$(this).val("");							   
	});
	
	$('#menu_list li').hover(function(){
		$(this).children("ul").show();
	},function(){
		$(this).children("ul").hide();
	});
});
