// $Id$
// Only run if we are in a supported browser.
if (Drupal.jsEnabled) {
	
	$(document).ready(function() {
		// Run the following code when the DOM has been fully loaded.
		refreshSongInfo();
		setInterval("refreshSongInfo()", 10000);
		
	});

}

function msplayerwindow(){
	window.open("?q=listenlive/msplayer/sa","radio_player","Width=728,Height=340,directories=0,hotkeys=0,location=0,menubar=0,personalbar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "_top");
}


function dpCallback(data){
	$('div.track').html('Title: ' + data.title);
	$('div.album').html('Album: ' + data.album);
	$('div.artist').html('Artist: ' + data.artist);
}

function refreshSongInfo() {
	$.getJSON("http://player.spacialnet.com/players/core/mediadata.php?stationID=115561&buster=1250539693378&callback=?", dpCallback);
	return false;
}