<!--
function setNowPlaying() {
	//var newImage ="<img src=\"images/nowplaying.gif\" width=\"59\" height=\"27\">";
	var img = document.getElementById('playIMG_1');
	img.src = "images/nowplaying.gif";
	img.height = "27";
	img.width = "59";
	
	for (i=1; i<4; i++){
		var anchor = document.getElementById('anchor1_'+i);
		anchor.removeAttribute('onmouseout');
		anchor.removeAttribute('onmouseover');
	}

}
-->