$(function(){
 	$('#imagine .submenu').css({'display':'block','top':0,'height':0});
	$('#imagine').mouseenter(function(){
		$('#imagine .submenu').stop().animate({
			top:-34,
			height:34
		});
	}).mouseleave(function(){
		$('#imagine .submenu').stop().animate({
			top:0,
			height:0
		});
	});
});