
$(document).ready(function(){
 

$("#top_nav ul li a").hover(function() {
		$(this).next("ul").animate({opacity: "show"}, "slow");
		});
});

              