startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="TD") {
nod = node.childNodes[0];
nod.onmouseover=function() {this.className+=" over";}
nod.onmouseout=function() {this.className=this.className.replace(" over", "");}}
if (node.nodeName=="TD"&&window.navigator.appName == "Microsoft Internet Explorer") {
node.onmouseover=function() {this.className+=" over";}
node.onmouseout=function() {this.className=this.className.replace(" over", "");}}}}}
window.onload=startList;
function gotoProduct(selSelectObject)
{
   if (selSelectObject.options[selSelectObject.selectedIndex].value != "")
   { 
     location.href=selSelectObject.options[selSelectObject.selectedIndex].value
   }
}