$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	
	
	//DESTINATION
	$(".dest").mouseover(function(){
		$(this).stop().animate({height:'105px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	//When mouse is removed
	$(".dest").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	
	
	
	//ACCOMMODATIONS
	$(".acco").mouseover(function(){
		$(this).stop().animate({height:'205px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	//When mouse is removed
	$(".acco").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});

	
	
	
	//RESIDENCES
	$(".resi").mouseover(function(){
		$(this).stop().animate({height:'85px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	//When mouse is removed
	$(".resi").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	
	
	
	//DINIG
	$(".dini").mouseover(function(){
		$(this).stop().animate({height:'105px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	//When mouse is removed
	$(".dini").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});	
	
	
	
	//HOTEL SERVICES
	$(".serv").mouseover(function(){
		$(this).stop().animate({height:'85px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	//When mouse is removed
	$(".serv").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});	
	
	
	
	//MEETING
	$(".meet").mouseover(function(){
		$(this).stop().animate({height:'125px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	//When mouse is removed
	$(".meet").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	
	
	
	//OFFERS
	$(".offe").mouseover(function(){
		$(this).stop().animate({height:'200px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	//When mouse is removed
	$(".offe").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
		
	
	//CONTACT
	$(".cont").mouseover(function(){
		$(this).stop().animate({height:'65px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	//When mouse is removed
	$(".cont").mouseout(function(){
		$(this).stop().animate({height:'20px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	
});