/*startList = function()
{
	if (document.all&&document.getElementById)
	{
		navRoot = document.getElementById("products");
		ul = navRoot.getElementsByTagName('ul');
		
		for (i=0; i<ul.length; i++)
		{
			node = ul[i];
			if (node.nodeName=="LI")
			{
				node.onmouseover=function() {this.className+=" over";}
				node.onmouseout=function(){this.className=this.className.replace(" over", "");}
			}
		}
	}
}*/
//window.onload=startList;

function showNav()
{
	alert(1);
	nav = document.getElementById('nav');
	nav.style.display = 'block';
}

function hideNav()
{
	nav = document.getElementById('nav');
	//nav.style.display = 'none';
}
