$(document).ready(function()
{
  akousSTAGE_RefreshTitleArtist();
});



function akousSTAGE_RefreshTitleArtist()
	{   
	  $.ajax({
		type: "GET",
		url: "/whatson/akousstage/NowOnAir.xml",
		dataType: "xml",
		success: akousSTAGE_ShowTitleArtist
	  });
	}

	function akousSTAGE_ShowTitleArtist(xml)
	{
		$(xml).find("Song").each(function()
		{
			$("#akousstageTitle").html($(this).attr("title"));
			$(xml).find("Artist").each(function()
			{
				$("#akousstageArtist").html($(this).attr("name"));
			});
		});
  
	}
	
	var oRefreshSTAGE;
	oRefreshSTAGE = window.setInterval("akousSTAGE_RefreshTitleArtist()", 20000);
