$(document).ready(function(){

	//Tabs Navigation
	$("#menu_tour li a").click(function(){
		$(".selected").removeClass("selected");
		$(this).addClass("selected");
		var tab = $(this).attr("href");
		$("#content_description, #content_intinerary, #content_pricing, #book_this").hide();
		$('.bottom_button').css ('display', 'block');
		$(tab).show();
		return false;
	});
	
		$('.book_this').click(function () {
			$('.bottom_button').css ('display', 'none');
		});

});
