$(document).ready(function()
{
  akousGAZI_RefreshTitleArtist();
});



function akousGAZI_RefreshTitleArtist()
	{   
	  $.ajax({
		type: "GET",
		url: "/whatson/akousgazi/NowOnAir.xml",
		dataType: "xml",
		success: akousGAZI_ShowTitleArtist
	  });
	}

	function akousGAZI_ShowTitleArtist(xml)
	{
		$(xml).find("Song").each(function()
		{
			$("#akousgaziTitle").html($(this).attr("title"));
			$(xml).find("Artist").each(function()
			{
				$("#akousgaziArtist").html($(this).attr("name"));
			});
		});
  
	}
	
	var oRefreshGAZI;
	oRefreshGAZI = window.setInterval("akousGAZI_RefreshTitleArtist()", 20000);
