$(document).ready(function(){
	$(".tab_content").hide();
	$("ul.tabs li:first").addClass("active").show();
	$(".tab_content:first").show();
	
	$("ul.tabs li").click(function() {
		/*
		added to private tabs
		*/
		$('#uniform-container').hide();
		$('#fetish-container').hide();
		if($(this).attr('id') == 'loginp' || $(this).attr('id') == 'loginv') {
			return true;	
		}
		if($(this).attr('id') == 'fetish') {			
			$('#fetish-container').show();
		}
		if($(this).attr('id') == 'uniform') {			
			$('#uniform-container').show();
		}
		
		
		$("ul.tabs li").removeClass("active");
		$(this).addClass("active");
		$(".tab_content").hide();
		var activeTab = $(this).find("a").attr("href");
		{$(activeTab).show();}
		return false;
	});
	

	/*
	display tab from direct link
	*/
	if(location.hash !='') {
		function showtab(hash) {
			$("ul.tabs li").removeClass("active");
			var tabs = $("ul.tabs li a").get();
			for(x = 0; x < tabs.length; x++) {
				if($(tabs[x]).attr("href") == hash) {
					$(tabs[x]).parent().addClass("active");
					break;
				}
			}	
			$(".tab_content").hide();		
			{$(hash).show();}
			return false;
		}
		showtab(location.hash);
		$("html").animate({ scrollTop: 0 }, "fast");
	}	
});
