// On Page Scripts

//Fadey "Book Now" Button


function ButtonOver (){
	$('#bknwp').hover(function(){$("#bknw1").fadeIn(500);clearTimeout(FadeTimer);},function(){$("#bknw1").fadeOut(500);});
	$('#bknwa').hover(function(){$("#bknw3").fadeIn(500);clearTimeout(FadeTimer);},function(){$("#bknw3").fadeOut(500);});
};


function LogoAnimations(){
	$("#logo2").delay(2500).animate({opacity: 1, width: "334px"},1000, 'easeOutQuint', function(){
		$("#logo4").delay(2500).animate({opacity: 1, width: "334px"},1000, 'easeOutQuint', function(){
			$("#logo4").delay(2500).animate({opacity: 0, width: 0},1000, 'easeOutQuint', function(){
				$("#logo2").delay(2500).animate({opacity: 0, width: 0},1000, 'easeOutQuint', function(){
					LogoAnimations()
				});
			});
		});
	});
};

function HotelOver (){
	$('#phLink').hover(function(){$("#phSlide").animate({top: "150px"},500,'easeOutQuad');},function(){$("#phSlide").animate({top: "0px"},500,'easeOutQuad');})
	$('#wsaLink').hover(function(){$("#wsaSlide").animate({top: "150px"},500,'easeOutQuad');},function(){$("#wsaSlide").animate({top: "0px"},500,'easeOutQuad');})
};
//Run Animations                                  
$(document).ready(function() {
	
	ButtonOver();
	HotelOver();
	LogoAnimations();
		
});

	

