// JavaScript Document

myPix = new Array("images/logo1.jpg","images/logo2.jpg","images/logo3.jpg","images/logo4.jpg","images/logo5.jpg","images/logo6.jpg","images/logo7.jpg","images/logo8.jpg","images/logo9.jpg","images/logo10.jpg","images/logo11.jpg","images/logo12.jpg","images/logo13.jpg","images/logo14.jpg","images/logo15.jpg","images/logo16.jpg","images/logo17.jpg","images/logo18.jpg","images/logo19.jpg","images/logo20.jpg","images/logo21.jpg","images/logo22.jpg","images/logo23.jpg","images/logo24.jpg","images/logo25.jpg","images/logo26.jpg","images/logo27.jpg","images/logo28.jpg","images/logo29.jpg","images/logo30.jpg","images/logo31.jpg","images/logo32.jpg","images/logo33.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;




