// Рекорд треки
var pervSong = "";

function request() {
	var x = Math.random();
	$.get("http://fmhit.ru/record-tracks.php", {t: "1", x: x}, function (song) {
		if (song != pervSong) {
			pervSong = song;
			$("#song").fadeOut(500, function () {
				$("#song").html(song);
			});
			$("#song").fadeIn(500);
		}
	});
}

$(document).ready(function() {

	$("#song").css("display", "none");
	action = 1;
    request();

	$(document).focus(function() {
		if (!action)
			request();
		action = 1;
	});

	$(document).blur(function() {
		action = 0;
		pervSong = "";
		$("#song").fadeOut(500, function () {
			$("#song").html("Окно неактивно, показ отключен");
		});
		$("#song").fadeIn(500);
	});

	setInterval("if (action) { request(); }", 60000);
});
