	var a=true;
	$(document).ready(function(){
		$(".hover").hover(
		function(){
			$(this).find("ul:first").stop(true,true);
			$(this).find("ul:first").fadeIn(1000);
			
		},
		function(){
			$(this).find("ul:first").fadeOut(1000);
		});
	});
