$(document).ready(function(){
	
	//When mouse rolls over
	$("div#amenul").mouseover(function(){
		$(this).stop().animate({height:'80px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("div#amenul").mouseout(function(){
		$(this).stop().animate({height:'17px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("div#amenur").mouseover(function(){
		$(this).stop().animate({height:'125px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("div#amenur").mouseout(function(){
		$(this).stop().animate({height:'17px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});