$(document).ready(function(){
	$(".menu").each(function() {
		$(this).hover(function(){
			$(this).children(".subMenu").eq(0).stop(false, true).animate({height:"show"}, 300);
		},
		function() {
			$(this).children(".subMenu").eq(0).stop(false, true).animate({height:"hide"}, 300);
		});
	});
});
