startList = function() {

//this js is only temp! 
//this requires a for function to llop through and check for all possible #expand ids 5 in all
//the below is only temp, Kieran

if (document.all&&document.getElementById) {
	
	if(document.getElementById("submitlarge")){
	navRoot = document.getElementById("submitlarge");
		
				navRoot .onmouseover=function() {
				this.className+=" over";
  				}
  				navRoot .onmouseout=function() {
 		 		this.className=this.className.replace(" over", "");
  	 			}
   			
  		
	}


	if(document.getElementById("expand")){
	navRoot = document.getElementById("expand");
		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", "");
  	 			}
   			}
  		}
	}

	if(document.getElementById("expand1")){
	navRoot1 = document.getElementById("expand1");
		for (i=0; i<navRoot1.childNodes.length; i++) {
			node = navRoot1.childNodes[i];
			if (node.nodeName=="LI") {

				node.onmouseover=function() {
				this.className+=" over";
  				}
  				node.onmouseout=function() {
 		 		this.className=this.className.replace(" over", "");
  	 			}
   			}
  		}
	}

	if(document.getElementById("expand2")){
	navRoot2 = document.getElementById("expand2");
		for (i=0; i<navRoot2.childNodes.length; i++) {
			node = navRoot2.childNodes[i];
			if (node.nodeName=="LI") {

				node.onmouseover=function() {
				this.className+=" over";
  				}
  				node.onmouseout=function() {
 		 		this.className=this.className.replace(" over", "");
  	 			}
   			}
  		}
	}

	if(document.getElementById("expand3")){
	navRoot3 = document.getElementById("expand3");
		for (i=0; i<navRoot3.childNodes.length; i++) {
			node = navRoot3.childNodes[i];
			if (node.nodeName=="LI") {

				node.onmouseover=function() {
				this.className+=" over";
  				}
  				node.onmouseout=function() {
 		 		this.className=this.className.replace(" over", "");
  	 			}
   			}
  		}
	}

	if(document.getElementById("expand4")){
	navRoot4 = document.getElementById("expand4");
		for (i=0; i<navRoot4.childNodes.length; i++) {
			node = navRoot4.childNodes[i];
			if (node.nodeName=="LI") {

				node.onmouseover=function() {
				this.className+=" over";
  				}
  				node.onmouseout=function() {
 		 		this.className=this.className.replace(" over", "");
  	 			}
   			}
  		}
	}
	
	if(document.getElementById("expand5")){
	navRoot5 = document.getElementById("expand5");
		for (i=0; i<navRoot5.childNodes.length; i++) {
			node = navRoot5.childNodes[i];
			if (node.nodeName=="LI") {

				node.onmouseover=function() {
				this.className+=" over";
  				}
  				node.onmouseout=function() {
 		 		this.className=this.className.replace(" over", "");
  	 			}
   			}
  		}
	}
	
}
}

