﻿$(window).load(function(){		jQuery('.tabcontent:not(:first)').hide();	//to fix u know who	jQuery('.tabcontent:first').show();		jQuery('.htabs a').mouseover(function(){		stringref = jQuery(this).attr('href').split('#')[1];		jQuery('.tabcontent:not(#'+stringref+')').hide();		if (jQuery.browser.msie && jQuery.browser.version.substr(0,3) == '6.0') {			jQuery('.tabcontent#' + stringref).show();		}		else 			jQuery('.tabcontent#' + stringref).show();				return false;	});	});
