// JavaScript Document
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;



// Image Pre Load
function preload(img) {
    if (document.img) {
        var i = 0;
        var imageArray = new Array();
        imageArray = img.split(',');
        var imageObj = new Image();
        for(i=0; i<=imageArray.length-1; i++) {
			alert(imageArray[i]);
            //document.write('<img src=images/"' + imageArray[i] + '" />');// Write to page (uncomment to check images)
            imageObj.src=img[i];
        }
    }
}
window.onload=preload;
