var subNav = new Array('subNav1');

var disappearSet = 0;

function showSubNav(id)
{
	hideSubNav();
	if(disappearSet == 1)
	{
		clearTimeout(disappear);
	}
	document.getElementById(id).style.display = "block";
}

function hideSubNav()
{		
	for (i=0; i<subNav.length; ++i)
	{
		document.getElementById(subNav[i]).style.display = 'none';
	}
}

function stay()
{
	clearTimeout(disappear);
}

function leave()
{
	disappear = setTimeout("hideSubNav()",1500);
	disappearSet = 1;
}

function openVideo()
{
	window.open('/largevideo.html','videoWindow','resizable=no,toolbar=no,scrollbar=no,width=520,height=360')	
}

var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;

function runIE6()
{
	if(IE6 == true)
	{
		document.getElementById('product').src = '/images/express_bagger.jpg';
		document.getElementById('product').style.top = '8';
		document.getElementById('product').style.left = '624';
	}
}
