// JavaScript Document
	var theTimeout;
	var isHidden = true;

	function show_products_menu() {
		
		if (isHidden) {
			if (document.getElementById('flashstatic'))
			{
				document.getElementById('flashstatic').style.display = 'inline';
				document.getElementById('flash').style.display = 'none';
			}
			var el = document.getElementById('products_menu');
			el.style.display = 'block';
			isHidden = false;
		}
		
		if (theTimeout != null) {
			window.clearTimeout(theTimeout);
		}
	}
	
	function hide_products_menu() {
		theTimeout = window.setTimeout(do_hide, 100);
	}
	
	function do_hide() {
			if (document.getElementById('flashstatic'))
			{
				document.getElementById('flashstatic').style.display = 'none';
				document.getElementById('flash').style.display = 'inline';
			}
			var el = document.getElementById('products_menu');
			el.style.display = 'none';
			isHidden = true;
	}


function displayFlash()
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="798" height="308">');
    document.write('<param name="movie" value="flash/CS_intro(Special Offer).swf">');
    document.write('<param name="quality" value="high"><param name="wmode" value="transparent">');
    document.write('<embed src="flash/CS_intro(Special Offer).swf" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="798" height="308"></embed>');
    document.write('</object>');
}

function displayFlash2()
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="618" height="400" title="CS Immunity Formulas">');
    document.write('<param name="movie" value="../flash/cs_immunity_formulas.swf">');
    document.write('<param name="quality" value="high"><param name="wmode" value="transparent">');
    document.write('<embed src="../flash/cs_immunity_formulas.swf" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="618" height="400"></embed></object>');
}

function show_gisub()
{
	document.getElementById('gi_submenu').style.display = 'inline';
}