// JavaScript Document
// http://www.alistapart.com/articles/horizdropdowns

startList = function() {
if (document.all&&document.getElementById) {
/*
navRoot = document.getElementById("menu");
if ( navRoot != null)
{
	for (i=0; i<navRoot.childNodes.length; i++) {
	node = navRoot.childNodes[i];
	if (node.nodeName=="LI") {
	node.onmouseover=function() {
	this.className+=" over";
	  }
	  node.onmouseout=function() {
	  this.className=this.className.replace(" over", "");
	   }
	   }
	  }
	 }
navRoot = document.getElementById("m_menu");
if ( navRoot != null)
{
	for (i=0; i<navRoot.childNodes.length; i++) {
	node = navRoot.childNodes[i];
	if (node.nodeName=="LI") {
	node.onmouseover=function() {
	this.className+=" over";
	  }
	  node.onmouseout=function() {
	  this.className=this.className.replace(" over", "");
	   }
	   }
	  }
	 }
*/
	navRoot = document.getElementById("splashCell");
	if ( navRoot != null)
	{
		for (i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];
			if (node.nodeName=="IMG")
			{
				node.onmouseover=function()
				{
					this.className+="over";
				}
				node.onmouseout=function()
				{
					this.className=this.className.replace("over", "");
				}
			}
		}
	}
	}
}

window.onload=startList;
/*
function showItemByID( itemID, showIsTrue)
{
	var anItem = document.getElementById(itemID);

	if ( showIsTrue)
		anItem.style.visibility = "visible";
	else
		anItem.style.visibility = "hidden";

}
*/