startList = function() {
if (document.getElementById) {
if(document.getElementById("nav"))
{
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="div") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
 }
}
//window.onload=startList;

function qshow(id) {
	document.getElementById(id).style.display = 'block';
	document.getElementById(id).className = 'hide hover';
	document.getElementById(id+'a').style.color = 'white';
}

function qhide(id) {
	document.getElementById(id).style.display = 'none';
	document.getElementById(id).className = 'hide';
	document.getElementById(id+'a').style.color = '';
}