startList = function() {	if (document.all&&document.getElementById) {		navRoot = document.getElementById("NavList");		if (navRoot) {			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.all&&document.getElementById) {		navRoot2 = document.getElementById("DeptList");		if (navRoot2) {			for (i=0; i<navRoot2.childNodes.length; i++) {				node2 = navRoot2.childNodes[i];				if (node2.nodeName=="LI") {					node2.onmouseover=function() {						this.className+=" over";					}					node2.onmouseout=function() {						this.className=this.className.replace						(" over", "");					}				}			}		}	}}window.onload=startList;function HomeBanner() {	var currentdate = 0	var core = 0	function StringArray (n) {	  this.length = n;	  for (var i =1; i <= n; i++) {		this[i] = ' '		  }	}		image = new StringArray(4)	image[0] = '/images/newbanner2.jpg'	image[1] = '/images/PAGEWebBanner.jpg'	image[2] = '/images/FLAG2WebBanner.jpg'	image[3] = '/images/GCWebBanner.jpg'		var ran = 60/image.length		function ranimage() {	  currentdate = new Date()	  core = currentdate.getSeconds()	  core = Math.floor(core/ran)		return(image[core])	}			document.write("<style type=\"text/css\">#Header { width: 780px; height: 158px; background: #FFF url(" +ranimage()+ ") no-repeat center center; margin: 0; padding: 0; }</style>")}
