$(function() { 



	var previousSong = "";
	var thisSong = "";
	
	$(".LatestTrack").everyTime(6000,function(i) {

		$.ajax({
		  url: "/_inc/nowplaying.php",
		  cache: false,
		  success: function(thisSong){
		  
			if ( thisSong != previousSong )
			{	
				$(".LatestTrack").fadeOut(1);
				$(".LatestTrack").html(previousSong).fadeOut(1);
				$(".LatestTrack").html(thisSong).fadeIn(2000);
			}
			previousSong = thisSong;
		  
		  }
		});
	});
});