// X-Live Radio - Phoenix
// By Alexandre Cisneiros

var playerCode = '<object type="application/x-shockwave-flash" data="http://x-liveradio.com/musicplayer.swf?playlist_url=http://x-liveradio.com/live.xspf&amp;autoplay=true" height="17" width="17"><param name="movie" value="http://x-liveradio.com/musicplayer.swf?playlist_url=http://x-liveradio.com/live.xspf&amp;autoplay=true"><img src="noflash.gif" alt="" height="17" width="17"></object>';

// Check the first URL
if(document.location.hash) {
	page=document.location.hash.split('#');
	loadPage(page[1]);
} else
	loadPage('inicio');

// Start listening for URL changes
setInterval(function(){
	if(curHashVal!=document.location.hash){
		page=document.location.hash.split('#');
		if (page[1])
			loadPage(page[1]);
		else
			loadPage('inicio');
		
		curHashVal = document.location.hash;
		
	}
}, 1000);

// Start listening for On  Air changes
setInterval(updateOnair, 300000);

playerStop();
