$(document).ready(function(){
	
	//---------------------------------Slider
	$("#s1").cycle({ 
    	fx: 'scrollHorz',
		prev: '#btnLeft', 
		next: '#btnRight',
		speed: 500, 
    	timeout: 8000
	});
	
	//---------------------------------Button hovers
	$("#bookBtn").hover(
		function(){
			$(this).attr("src", "/assets/images/site/btn_book-hover.png");
		},
		function(){
			$(this).attr("src", "/assets/images/site/btn_book-normal.png");	
		});
	$("#contactBtn").hover(
		function(){
			$(this).attr("src", "/assets/images/site/btn_contact-hover.png");
		},
		function(){
			$(this).attr("src", "/assets/images/site/btn_contact-normal.png");
		}
	);
});
