$(document).ready(function()
{
  akousINLOVE_RefreshTitleArtist();
});



function akousINLOVE_RefreshTitleArtist()
	{   
	  $.ajax({
		type: "GET",
		url: "/whatson/akousinlove/NowOnAir.xml",
		dataType: "xml",
		success: akousINLOVE_ShowTitleArtist
	  });
	}

	function akousINLOVE_ShowTitleArtist(xml)
	{
		$(xml).find("Song").each(function()
		{
			$("#akousinloveTitle").html($(this).attr("title"));
			$(xml).find("Artist").each(function()
			{
				$("#akousinloveArtist").html($(this).attr("name"));
			});
		});
  
	}
	
	var oRefreshINLOVE;
	oRefreshINLOVE = window.setInterval("akousINLOVE_RefreshTitleArtist()", 50000);
