jQuery(document).ready(function(){
	
	jQuery(".tab:not(:first)").hide();

	//to fix u know who
	jQuery(".tab:first").show();
	//jQuery("#optabs:first").css({ color: "#222", background: "#dedbd1" });
	//jQuery("#optabs h2:last").addClass("actives");
	

									
	jQuery(".optabs h2 a").click(function(){
		jQuery(".optabs h2 a").removeClass('actives');
	jQuery(this).removeClass('nonactives');
	jQuery(this).addClass('actives');
		jQuery(".optabs h2 a").addClass('nonactives');



	//	$(".htabs h2 a").addClass(".actives");

  //jQuery(this).css({ color: "#FFFFFF", background: "#000000" }); 
 		
		stringref = jQuery(this).attr("href").split('#')[1];

		jQuery('.tab:not(#'+stringref+')').hide();
		


		if (jQuery.browser.msie && jQuery.browser.version.substr(0,3) == "6.0") {
			jQuery('.tab#' + stringref).show();
	
		}
		else 
			jQuery('.tab#' + stringref).fadeIn();
		
		return false;
		

	});

	
});

	