<!--
	// Colors for menu buttons
	var offColor			= "white";
	var offBackground 		= "#06471D";
	var hl_Color = "black";
	var hl_BG = "#ffffc5";
	var hlOff_TabBG = "#F8F9F2";
	var hlOff_TabColor = "#959595";
	var hl_TabBG = "#ffff00";
	var hl_TabColor = "black";
	var bUseNetscape = (document.getElementById && !document.all);


	

	function goMenuClick(choice) {
		switch(choice) {
			case 'td1':
				document.location = "WMP_Music.html";
				break;
			case 'td2':
				document.location = "WMP_Music.html";
				break;
			case 'td3':
				document.location = "WMP_ArtCramer.html";
				break;
			case 'td4':
				document.location = "WMP_Music.html";
				break;
			case 'td5':
				document.location = "WMP_Music.html";
				break;
			case 'td6':
				document.location = "WMP_Music.html";
				break;
			case 'td7':
				document.location = "WMP_Videos.html";
				break;
			}
		}

	// * -------------------------------------------------------------------------------------------
	// * Key Display Functions
	// * -------------------------------------------------------------------------------------------
	function downKey(f) {
		if(bUseNetscape) {
			if(document.getElementById(f)) {
				document.getElementById(f).style.borderStyle = "inset";
				document.getElementById(f).style.backgroundColor = offBackground;
				document.getElementById(f).style.color = "yellow";
				}
			}
		else	{
			if(document.all[f]) {
				document.all[f].style.borderStyle = "inset";
				document.all[f].style.backgroundColor = offBackground;
				document.all[f].style.color = "yellow";
				}
			}
		}

	function upKey(f) {
		if(bUseNetscape) {
			if(document.getElementById(f)) {
				document.getElementById(f).style.borderStyle = "outset";
				document.getElementById(f).style.backgroundColor = offBackground;
				document.getElementById(f).style.color = offColor;
				}
			}
		else	{
			if(document.all[f]) {
				document.all[f].style.borderStyle = "outset";
				document.all[f].style.backgroundColor = offBackground;
				document.all[f].style.color = offColor;
				}
			}
		}

	function hlKey(f) {
		if(bUseNetscape) {
			if(document.getElementById(f)) {
				document.getElementById(f).style.borderStyle = "outset";
				document.getElementById(f).style.backgroundColor = hl_BG;
				document.getElementById(f).style.color = hl_Color;
				}
			}
		else	{
			if(document.all[f]) {
				document.all[f].style.backgroundColor = hl_BG;
				document.all[f].style.borderStyle = "outset";
				document.all[f].style.color = hl_Color;
				}
			}
		}
	function hlKeyNot(f) {
		var bBail=false;
		//alert(document.location);
		
		switch(document.location) {
			case 'Default.html':
				break;
			case 'WMP_Music.html':
				break;
			case 'WMP_Art.html':
				break;
			case 'WMP_Poetry.html':
		bBail=true;
				break;
			case 'WMP_Blog.html':
				break;
			case 'WMP_Link.html':
				break;
			}

		



			if(bUseNetscape) {
				if(document.getElementById(f)) {
					document.getElementById(f).style.borderStyle = "outset";
					document.getElementById(f).style.backgroundColor = offBackground;
					document.getElementById(f).style.color = offColor;
					}
				}
			else	{
				if(document.all[f]) {
					document.all[f].style.borderStyle = "outset";
					document.all[f].style.backgroundColor = offBackground;
					document.all[f].style.color =  offColor;
					}
				}
			}

	function hlTab(f) {
		if(bUseNetscape) {
			if(document.getElementById(f)) {
				document.getElementById(f).style.backgroundColor = hl_TabBG;
				document.getElementById(f).style.color = hl_TabColor;
				}
			}
		else	{
			if(document.all[f]) {
				document.all[f].style.backgroundColor =hl_TabBG;
				document.all[f].style.color =  hl_TabColor;
				}
			}
		}


	function hlTabNot(f) {
		if(bUseNetscape) {
			if(document.getElementById(f)) {
				document.getElementById(f).style.backgroundColor = hlOff_TabBG;
				document.getElementById(f).style.color = hlOff_TabColor;
				}
			}
		else	{
			if(document.all[f]) {
				document.all[f].style.backgroundColor = hlOff_TabBG;
				document.all[f].style.color =  hlOff_TabColor;
				}
			}
		}

//-->



