// JavaScript Document
function showElement(id)
{
	var	element = document.getElementById(id);
	if (element != null)
	{
		element.style.display = 'block';
	}
}

function hideElement(id)
{
	var	element = document.getElementById(id);
	if (element != null)
	{
		element.style.display = 'none';
	}
}

// JavaScript Document

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("navbar");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="li") {
node.onmouseover=function() {
this.className+=" nav-over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" nav-over", "");
   }
   }
  }
 }
}
window.onload=startList;