$(document).ready(function(){

	$("table.menu tr td").hover(function(){

		$(this).children(".parent").children("a").css("background-position","0 -35px");
	   $(".special").css("display","none");
	   $(this).children().children(".special").slideToggle("fast");
	    //$(this).children().children(".special").css("display","block");
		
		
	},function(){
	  
	   $(this).children(".parent").children("a").css("background-position","0 0");
	   //$(".special").css("display","none");
	   $(".special").hide("slow");
		
				});

	
});
