function temaLive() {
	d=new Date();
	day=d.getUTCDay();
	hr=d.getUTCHours();
	mins=d.getUTCMinutes();
	
	if (day>=1 && day<=5 && hr==23 && mins<55) {
	document.getElementById('temaLive').innerHTML="<a href='http://www.csnradio.com/listen.htm' target='_blank'>LISTEN LIVE NOW!</a><br /><b>CALL TOLL-FREE: 1.88.88.ASK.CSN</b>";
	}
	
	else {
	document.getElementById('temaLive').innerHTML="Weekdays @ 3:05PM (PT) / 6:05PM (ET)<br />Toll-Free: 1.88.88.ASK.CSN";
	}
	
	t=setTimeout('temaLive()',5000);
}