// JavaScript Document
/*
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("cat");
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", "");
   }
   }
  }
 }
}
window.onload=startList;
function getPDF(t) {
 if (t.options[t.selectedIndex].value == "1") {
	window.open('cc_form.pdf'); 	
 }
}*/
function funcOut() {
  this.className=this.className.replace(" over", "");
   }
   
function funcOver() {
this.className+=" over";
  }

function startList() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("cat");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=funcOver;
  node.onmouseout=funcOut;
  
for (i2=0; i2<node.childNodes.length; i2++) {
ulnode = node.childNodes[i2];
if (ulnode.nodeName=="UL") {
for (i3=0; i3<ulnode.childNodes.length; i3++) {
linode = ulnode.childNodes[i3];
if (linode.nodeName=="LI") {
linode.onmouseover=funcOver;
  linode.onmouseout=funcOut;
   }
  }
  
  break;
   }
  }
  
   }
  }
 }
}

window.onload=startList;
function getPDF(t) {
 if (t.options[t.selectedIndex].value == "1") {
	window.open('cc_form.pdf'); 	
 }
}