$(document).ready(function()
{
  akousDELUXE_RefreshTitleArtist();
});



function akousDELUXE_RefreshTitleArtist()
	{   
	  $.ajax({
		type: "GET",
		url: "/whatson/akousdeluxe/NowOnAir.xml",
		dataType: "xml",
		success: akousDELUXE_ShowTitleArtist
	  });
	}

	function akousDELUXE_ShowTitleArtist(xml)
	{
		$(xml).find("Song").each(function()
		{
			$("#akousdeluxeTitle").html($(this).attr("title"));
			$(xml).find("Artist").each(function()
			{
				$("#akousdeluxeArtist").html($(this).attr("name"));
			});
		});
  
	}
	
	var oRefreshDELUXE;
	oRefreshDELUXE = window.setInterval("akousDELUXE_RefreshTitleArtist()", 20000);
