function showSubNav(which)
{
	document.getElementById(which).style.display = "block";	
}

function hideSubNav(which)
{
	document.getElementById(which).style.display = "none";	
}


$(document).ready(function() {
	////////////////////////////////////////
	// Font replacement
	// Cufon.replace('h1', { fontFamily: 'Trade Gothic' });
	Cufon.replace('h1,h2,h3,h4,h5,h6,#mainNav a:not(.subnav a),.button,.homeFeature a,.rollout strong', { fontFamily: 'Trade Gothic', hover: true });

});

