<!--	var currentOption;	var cursorType;		function loadMe(loadList,currentOption) {		if(document.all) { 			cursorType = "hand";		} else {			cursorType = "pointer";		};				if(currentOption)  {			document.getElementById(currentOption).style.cursor="default";				}		var len = loadList.length;			for(var i=0; i<len; i++) {			var objectID = loadList[i];			document.getElementById(objectID).style.cursor=cursorType;		}	}		function rollOverMe() {		selectMenuItem2(this.id,1);	}			function rollOutMe() {		selectMenuItem2(this.id,0);	}			function navigate(destin) {		var loc = destin + ".html" 		location = loc;	}//-->
