	var a=true;
	$(document).ready(function(){
		$(".hover").hover(
		function(){
			$(this).find("ul:first").stop(true,true);
			$(this).find("ul:first").slideDown(500);
			
		},
		function(){
			if(!$(this).find("ul.select").length)
				$(this).find("ul:first").slideUp(500);
		});
	});
