//create the hide/show functions for the tout container div

function showToutDiv() {		
		document.getElementById('tout').style.display = 'block'; 	
		var flashObj = document.getElementById('toutContainer');
		flashObj.reset();
}
	
function hideToutDiv() {	
		//don't hide the div if you're in IE, it doesn't build back in very well
		var browserName=navigator.appName; 		
		 if (browserName!="Microsoft Internet Explorer")
		 {
		  document.getElementById('tout').style.display = 'none'; 
		 }		
		var toutAction = document.getElementById('mainNav');
		toutAction.collapseTout();	
}	