$(document).ready(function() {
	$(".tabcontent").hide();
	$("ul.tabs li a").click(function() {
		$("ul.tabs li").removeClass("active");
		$("ul.tabs li").removeClass("onhover");//IE6?
		$("ul.tabs li").addClass("notactive");
	});
	$("ul.tabs li").click(function() {
		$(this).addClass("active");
		$(".tabcontent").hide();
		var activeTab = $(this).find("a").attr("href");
		$(activeTab).show();
		try
		{
		    if (ServerVars.Type != null)
		    {
		        switch (ServerVars.Type)
		        {
		        case "1":
		            $.cookie('SpaTab' + ServerVars.Spa, activeTab);
		            break;
		        case "2":
		            $.cookie('OfferTab', activeTab);
		            break;
		        }
		    }
		}catch(err){}
		return false;
	});
	$(".tabcontent a.innerlink").click(function() {
		$("ul.tabs li.tab2").removeClass("active");
		$("ul.tabs li.tab1").addClass("active");
		$(".tabcontent").hide();
		$("div#tab1").show();
		return false;
	});
});
