$(document).ready(function(){
	$("#topmenu li").hover(function() {
		$(this).children("div").animate({opacity: "show", top: "-58"}, "fast");
	}, function() {
		$(this).children("div").animate({opacity: "hide", top: "-70"}, "fast");
	});
});
