<!--
	function setNav() {
		if (document.images){
			document[currentPage].src = "images/" + currentPage + "_on.gif";
			window.status='';
			return true;
		}else{
			return false;
		}
	}
	function loadImg() {
		if (document.images){
			var imgList = "live|music|press|orch|pics|news|buy|star";
			var imgArray = imgList.split("|");
			var stateList = "on|off|over";
			var stateArray = stateList.split("|");
			var temp_image;
			for(var i = 0; i < imgArray.length; i++){
				for(var j = 0; j < stateArray.length; j++){
					tempImage = new Image();
					tempImage.src = "images/" + imgArray[i] + "_" + stateArray[j] + ".gif";
				}
			}			
			return true;
		}else{
			return false;
		}
	}
	function rollImg(imgState, imgName, imgVer) {
		if (document.images && imgName != currentPage){
			var imgPath = "images/" + imgName + "_" + imgState + ".gif";
			if(imgVer && imgVer != ''){
				document[imgVer].src = imgPath;
			}else{
				document[imgName].src = imgPath;
			}
			window.status='';
			return true;
		}else{
			return false;
		}
	}


//	function rollOut(imgName, imgVer) {
//		if (document.images && imgName != currentPage){
//			var imgOut = "images/" + imgName + "_off.gif";
//			if(imgVer && imgVer != ''){
//				document[imgVer].src = imgOut;
//			}else{
//				document[imgName].src = imgOut;
//			}
//			window.status='';
//			return true;
//		}else{
//			return false;
//		}
//	}
//-->

