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", "");
				}
			}
		}
	}
}


var mySPix = new Array ("http://www.ConnOTA.org/images/s01.jpg", "http://www.ConnOTA.org/images/s02.jpg", "http://www.ConnOTA.org/images/s03.jpg", "http://www.ConnOTA.org/images/s04.jpg", "http://www.ConnOTA.org/images/s05.jpg", "http://www.ConnOTA.org/images/s06.jpg", "http://www.ConnOTA.org/images/s07.jpg")	
	
function chooseSPic(){
  if (document.images){
    randomNum=
    Math.floor((Math.random()*10))%7
    document.mySPicture.src=mySPix[randomNum]
  }
}

var myHPix = new Array ("http://www.ConnOTA.org/images/h01.jpg", "http://www.ConnOTA.org/images/h02.jpg", "http://www.ConnOTA.org/images/h03.jpg")	
	
function chooseHPic(){
  if (document.images){
    randomNum=
    Math.floor((Math.random()*10))%3
    document.myHPicture.src=myHPix[randomNum]
  }
}
