// JavaScript Document

startList = function() {

    if (document.all&&document.getElementById) {
       
        navRoot = document.getElementById("header");
        navRoot2 = document.getElementById("bsc_ddmenu");
        navRoot3 = document.getElementById("bsc_ddmenu_carvers");
        navRoot4 = document.getElementById("bsc_ddmenu_silver");
        navRoot5 = document.getElementById("bsc_ddmenu_kickbacks");
        navRoot6 = document.getElementById("bsc_ddmenu_gifts");
      
        
        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", "");
                }
            }
        }
        
        for (i=0; i<navRoot2.childNodes.length; i++) {
            node = navRoot2.childNodes[i];
            if (node.nodeName=="LI") {
                node.onmouseover=function() {
                    this.className+=" over";
                }
                node.onmouseout=function() {
                    this.className=this.className.replace(" over", "");
                }
            }
        }
        
        for (i=0; i<navRoot3.childNodes.length; i++) {
            node = navRoot3.childNodes[i];
            if (node.nodeName=="LI") {
                node.onmouseover=function() {
                    this.className+=" over";
                }
                node.onmouseout=function() {
                    this.className=this.className.replace(" over", "");
                }
            }
        }
        
        for (i=0; i<navRoot4.childNodes.length; i++) {
            node = navRoot4.childNodes[i];
            if (node.nodeName=="LI") {
                node.onmouseover=function() {
                    this.className+=" over";
                }
                node.onmouseout=function() {
                    this.className=this.className.replace(" over", "");
                }
            }
        }
        
        for (i=0; i<navRoot5.childNodes.length; i++) {
            node = navRoot5.childNodes[i];
            if (node.nodeName=="LI") {
                node.onmouseover=function() {
                    this.className+=" over";
                }
                node.onmouseout=function() {
                    this.className=this.className.replace(" over", "");
                }
            }
        }
        
        for (i=0; i<navRoot6.childNodes.length; i++) {
            node = navRoot6.childNodes[i];
            if (node.nodeName=="LI") {
                node.onmouseover=function() {
                    this.className+=" over";
                }
                node.onmouseout=function() {
                    this.className=this.className.replace(" over", "");
                }
            }
        }
        
       
     }
}
window.onload=startList;
