// pbnpure.com
// RG Hartwig, 2009-03



$(document).ready(function() {
	getData();
	setInterval("getData();", 20 * 1000);
});



function getData() {
	// Get the data about the program from the server
	
	$.getJSON("http://www.pbnradio.com/playlist/mostRecentData.php?station=pbnpure&jsonp=?",
		function(data) {
			if (data.querystatus.code == 0) {
				$("#playing_song").html(data.song.title);
				$("#playing_artist").html(data.song.artist);
				$("#playing_album").html(data.song.album.title);
				txt = '';
				if (data.song.album.productimg != '')
					txt = '<img src="' + data.song.album.productimg + '" alt="BUY">';
				if (data.song.album.producturl != '')
					txt = '<a href="' + data.song.album.producturl + '" title="Click to BUY">' + txt + '</a>';
				if (txt != '')
					$("#playing_img").html(txt);
				else
					$("#playing_img").html('');
				
			}
			else {
				$("#playing_song").html("unknown");
				$("#playing_artist").html("unknown");
				$("#playing_album").html("unknown");
			}
		}
	);


}
