$(document) .ready (function() {
	 
	$('#menus') .mouseenter(function(){
		$('#menus') .animate({
			width:'110px', height: '145px'
			} );
		});
		
		
		$('#menus') .mouseleave(function(){
		$('#menus') .animate({
			width:'110px', height: '15px'
			} );
		});
		
		$('#catering') .mouseenter(function(){
		$('#catering') .animate({
			width:'110px', height: '160px'
			} );
		});
		
		$('#catering') .mouseleave(function(){
		$('#catering') .animate({
			width:'110px', height: '15px'
			} );
		});
		
		$('#weddings') .mouseenter(function(){
		$('#weddings') .animate({
			width:'110px', height: '160px'
			} );
		});
		
		$('#weddings') .mouseleave(function(){
		$('#weddings') .animate({
			width:'110px', height: '15px'
			} );
			});
		
		$('#host') .mouseenter(function(){
		$('#host') .animate({
			width:'110px', height: '70px'
			} );
		});
		
		$('#host') .mouseleave(function(){
		$('#host') .animate({
			width:'110px', height: '15px'
			} );
			});
		
		$('#management') .mouseenter(function(){
		$('#management') .animate({
			width:'110px', height: '50px'
			} );
		});
		
		$('#management') .mouseleave(function(){
		$('#management') .animate({
			width:'110px', height: '15px'
			} );
			});
		
		$('#contact') .mouseenter(function(){
		$('#contact') .animate({
			width:'110px', height: '125px'
			} );
		});
		
		$('#contact') .mouseleave(function(){
		$('#contact') .animate({
			width:'110px', height: '15px'
			} );
			});
	
			
});
