

function nowplay_update() {
	$('#songinfo').fadeOut('slow');
	
	$.ajax({
	  url: "/ajax/data/current.txt",
	  cache: false,
	  success: function(html) {
		  
		$('#songinfo').html(html).fadeIn('slow');
	  }
	});
	
	setTimeout(nowplay_update,10000);
}




$(document).ready(function() {

	nowplay_update();
	$(document).pngFix(); 
});
