$(document).ready(function(){

	$("#submenu li").hover(function() {

		$(this).children("div").animate({opacity: "show", top: "-208"}, "slow");

	}, function() {

		$(this).children("div").animate({opacity: "hide", top: "-220"}, "fast");

	});

});