/**
 * @author guru
 */

 $(document).ready(function() {

	$("#dolphins").hide();
	$("#sunset").hide();
	$("#business").hide();
	$("#romantic").hide();	
	$("#contact").hide();
	$("#photos").hide();
	var current = 'intro';
	
	$("#tabs a").click(function() {
		var clicked = $(this).attr("title");
		if (clicked == current) {
			return false;
		}
		else {
			$("a[title=" + current + "]").parent("li").removeClass("selected");
			$("#" + current).hide();
			$("a[title=" + clicked + "]").parent("li").addClass("selected");
			$("#" + clicked).show();
			current = clicked;
			return false;
		}
	});
	
	$("#arrdate").datepicker();

})

