// JavaScript Document

myPix = new Array("images/logo1.jpg","images/logo2.jpg","images/logo3.jpg","images/logo4.jpg","images/logo5.jpg","images/logo6.jpg",)
   thisPic = 0
   imgCt = myPix.length - 1

   function chgSlide(direction) {
      if (document.images) {
         thisPic = thisPic + direction
         if (thisPic > imgCt) {
            thisPic = 0
         }
         if (thisPic < 0) {
            thisPic = imgCt
         }
         document.myPicture.src=myPix[thisPic]
      }
   }


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=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;




