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

	jQuery(".tab:first").show(500);
	
	jQuery(".htabs a").click(function(){
		stringref = jQuery(this).attr("href").split('#')[1];

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

		jQuery('.tab#' + stringref).fadeIn(500);
		
		return false;
	});

	
});	
