<!--//
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", "");
   }
   }
  }
 }
}

function expandcollapse(ref,ref1) {

	if ( document.getElementById(ref).style.display == 'none' ) {
		document.getElementById(ref).style.display = 'block';
		document.getElementById(ref1).className = 'moreSelected';
	} else {
		document.getElementById(ref).style.display = 'none';
		document.getElementById(ref1).className = 'more';
	}

}
<!--//
function startList() {
	if (document.all&&document.getElementById) { // parent if
	  navRoot = document.getElementById("nav");

	  for (i=0; i < navRoot.childNodes.length; i++) { // for
		node = navRoot.childNodes[i];
	
		if (node.nodeName=="LI") {
		  node.onmouseover = function() { // start of function
								this.className += " over";
		                      }
		  node.onmouseout = function() {
							  this.className = this.className.replace(" over", "");
						    }  // end of function
		} // end if
	  } // end for
	} // parent if
} // function

MyImages=new Array();
MyImages[0]='/Style Library/images/leaf.jpg';
MyImages[1]='/Style Library/images/swirl.jpg';
MyImages[2]='/Style Library/images/graph.jpg';
//"" + MyImages[ Math.round(Math.random()*2)]
function newImage(){
  divEl = document.getElementById("image");
  divEl.innerHTML =  '<img id="mainImage" height="91" width="450" alt="Improving the lives of Australians" src="'+ MyImages[ Math.round(Math.random()*2)] +'">';
//alert(divEl.innerHTML);
}

//-->
//-->


