$(document).ready(function() {

	$("#previous").hide().load("requests/onair.html?randval="+ Math.random());	
	$("#current").hide().load("requests/onair.html?randval="+ Math.random(), function () {
		$(this).fadeIn(2000);	
	});
	$("#historyp").hide().load("requests/history.html?randval="+ Math.random(), function() {
		$(this).fadeIn(2000);	
	});
	
	var interval = setInterval(function () {
		$("#previous").hide().load("requests/onair.html?randval="+ Math.random());
		var prevSong = $("#current").text();
		var newSong = $("#previous").text();
		
		if (prevSong != newSong) {
			$("#current").hide().load("requests/onair.html?randval="+ Math.random(), function() {
				$(this).fadeIn(2000);
			});
			$("#historyp").hide().load("requests/history.html?randval="+ Math.random(), function() {
				$(this).fadeIn("slow");
			});			
		}		
	}, 10000);	
});
