/* Site Initialization */
$(document).ready(function() { 
	if ($.browser.msie && parseInt($.browser.version) < 7) {
		// PNG Fix
		$("#masthead #tabs li, #featurepanel").pngfix({repeatMethod: "crop" });
		$("#featurecolumn div#featurepanel div.body, #tabs li > a, #tabs li div").pngfix();
	}
	// Tab Hover
	$("#tabs > ul > li").hoverIntent({
		sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
		interval: 100, // number = milliseconds for onMouseOver polling interval    
		over: function() { $(this).find("ul:first").slideDown(); }, // function = onMouseOver callback (REQUIRED)    
		timeout: 200, // number = milliseconds delay before onMouseOut    
		out: function() { $(this).find("ul:first").slideUp(); }// function = onMouseOut callback (REQUIRED)    
	});
});