function initTabs() {	$(".tab_content").hide(); //Hide all content	if(location.hash != "") {		var target = location.hash.split("#")[1]		$(location.hash).show(); //Show first tab content		$("ul.tabs li:has(a[href=#"+target+"])").addClass("active").show();	} else {		$("ul.tabs li:first").addClass("active").show(); //Activate first tab		$(".tab_content:first").show(); //Show first tab content	}		//On Click Event	$("ul.tabs li").click(function(e) {		$("ul.tabs li").removeClass("active"); //Remove any "active" class		$(this).addClass("active"); //Add "active" class to selected tab		$(".tab_content").hide(); //Hide all tab content		var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content		$(activeTab).fadeIn(); //Fade in the active content		e.preventDefault();	});}$(document).ready(function() {initTabs();	if ((screen.width<=1300)) {		$('#img-stretch').append('<img src=\"http://www.villasuryadamai.com/wp-content/themes/suryadamai/headers/homepage-normal.jpg\" class=\"stretch\" />');	} else {		$('#img-stretch').append('<img src=\"http://www.villasuryadamai.com/wp-content/themes/suryadamai/headers/homepage-wide.jpg\" class=\"stretch\" />');	}	$('img.stretch').height(($(window).height())-40);	$('#contentwrap').height(($(window).height())-40);	//$('#menu-item-270 a').attr('title', 'Floorplan').addClass('thickbox'); 	//$('#menu-item-202 a').attr('rel', 'content-716-542').addClass('pirobox_gall');		$().piroBox_ext({	piro_speed : 800,		bg_alpha : 0.5,		piro_scroll : true // pirobox always positioned at the center of the page	});		$(".gallery").carouFredSel({			circular	: false,			infinite	: false,			auto 		: false,			width: 780,			height: 420,			items: 1,			prev : {				button		: "#photogallery_prev",				key		: "left",				items		: 1				},			next : {				button		: "#photogallery_next",				key		: "right",				items		: 1			},			pagination : {				container	: "#photogallery_paging",				keys		: true			}		});});$(window).load(function() {	$('.tblrates tr:even, .tblrates2 tr:even').addClass('even');	$('ul.mainnav > li').addClass('rootitem');	$('ul.mainnav > li:last, #footer li:last, #gallery-link li:last').addClass('last');	$('ul.mainnav .sub-menu').hide();	$('.rootitem.current-menu-item .sub-menu, .rootitem.current-menu-parent .sub-menu').show('fast',function() {		$('#sub-nav').show();	});	$('#headerimg img').show();	$('#intro').hide().fadeIn(1000);	$('#arrivaldate').DatePicker({		mode: 'single',		format:'d-m-Y',		date: $('#arrivaldate').val(),		current: $('#arrivaldate').val(),		starts: 1,		position: 'r',		onChange: function(formated, dates){			$('#arrivaldate').val(formated);			$('#arrivaldate').DatePickerHide();		}	});	$('#departuredate').DatePicker({		mode: 'single',		format:'d-m-Y',		date: $('#departuredate').val(),		current: $('#departuredate').val(),		starts: 1,		position: 'r',		onChange: function(formated, dates){			$('#departuredate').val(formated);			$('#departuredate').DatePickerHide();		}	});});
