//jQuery Tabs on Product detail page

jQuery(document).ready(function(){
	
	//jQuery(".tab:not(:first)").hide();
	jQuery(".tab:not(#gallery)").hide();

	//to fix u know who
	//jQuery("ul.options li:first").addClass("active").show();
	jQuery("ul.options li#gallery").addClass("active").show();
	//jQuery(".tab:first").show();
	jQuery(".tab#gallery").show();
	
	
	jQuery(".options li").click(function(){
		jQuery("ul.options li").removeClass("active"); //Remove any "active" class
		jQuery(this).addClass("active"); //Add "active" class to selected tab
		jQuery(".tab").hide(); //Hide all tab content
		
		var activeTab = jQuery(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		jQuery(activeTab).fadeIn(); //Fade in the active ID content
		return false;
		
		

	});
	
	jQuery(".tab:not(:first)").hide();
	jQuery("ul.options li:first").addClass("active").show();
	jQuery(".tab:first").show();

});





