// Clickable div

$(document).ready(function(){

	$(".banner_firstVisit, .banner_tour, .banner_book, .banner_contact").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

});



// Go to page top with animation

$(document).ready(function(){

	$(".go_top a").click(function(){
	  $('html, body').animate({
		scrollTop: $($(this).attr('href')).offset().top					  
		}, 'slow','swing');
	  	return false;
	});

});




$(document).ready(function(){

	$('#nav ul li:first').before('<li><a href="/">Home</a></li>');

});
