
		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;


		$(document).ready(function() {
			// Preload all rollovers
			$("#divNav img").each(function() {
				// Set the original src
				rollsrc = $(this).attr("src");
				rollON = rollsrc.replace('.gif', '_hover.gif');
				newImg = new Image(); // create new image obj
				$(newImg).attr("src", rollON); // set new obj's src
			});
			// Navigation rollovers
			$("#divNav a").mouseover(function(){
				imgsrc = $(this).children("img").attr("src");
				
				if (typeof(imgsrc) != 'undefined') {
				imgsrcON = imgsrc.replace('.gif', '_hover.gif');
				$(this).children("img").attr("src", imgsrcON);
				}
			});
			
			// Handle mouseout
			$("#divNav a").mouseout(function(){
				if (typeof(imgsrc) != 'undefined') {
				$(this).children("img").attr("src", imgsrc);
				}
			});
			
						$("#utilitynav img").each(function() {
				// Set the original src
				rollsrc = $(this).attr("src");
				rollON = rollsrc.replace('.gif', '_hover.gif');
				newImg = new Image(); // create new image obj
				$(newImg).attr("src", rollON); // set new obj's src
			});
			// Navigation rollovers
			$("#utilitynav a").mouseover(function(){
				imgsrc = $(this).children("img").attr("src");
				
				if (typeof(imgsrc) != 'undefined') {
				imgsrcON = imgsrc.replace('.gif', '_hover.gif');
				$(this).children("img").attr("src", imgsrcON);
				}
			});
			
			// Handle mouseout
			$("#utilitynav a").mouseout(function(){
				if (typeof(imgsrc) != 'undefined') {
				$(this).children("img").attr("src", imgsrc);
				}
			});
	});
