// JavaScript Document
$(document).ready(function(){
		$('#home').hide();
			
		
		
		
		
		
		$('#arrivaldate').datepicker();
		$('#departuredate').datepicker();
		$('.mainMenu a').hover(function(){ $(this).addClass('hover'); }, function(){ $(this).removeClass('hover'); });
		$('#call1').hover(function(){ 
					$(this).animate({bottom:"0px"},500);
					$(this).clearQueue();
					
		}, function(){$(this).animate({bottom:"-160px"}, 500); $(this).clearQueue(); });
		
		
			$('#call2').hover(function(){ 
					$(this).animate({bottom:"0px"},500);
					$(this).clearQueue();
					
		}, function(){$(this).animate({bottom:"-160px"}, 500); $(this).clearQueue(); });
		
			$('#call3').hover(function(){ 
					$(this).animate({bottom:"0px"},500);
					$(this).clearQueue();
					
		}, function(){$(this).animate({bottom:"-160px"}, 500); $(this).clearQueue(); });
			
			
			
			$('#call4').hover(function(){ 
					$(this).animate({bottom:"0px"},500);
					$(this).clearQueue();
					
		}, function(){$(this).animate({bottom:"-160px"}, 500); $(this).clearQueue(); });	
			
			

});
