function currentShow() {
	var theDate = new Date();
	var seconds = theDate.getSeconds();
	if (seconds == 0) {
		$.ajax({   
			type: "GET",   
			url: "/custom/flash/schedule.php",   
			data: "type=src", 
			success: function(e) {   
				if (e != $("#show_img").attr("src")) {
					$("#show_img").attr("src",e);
				}
			}  
		});
	}
	checkShow = setTimeout(currentShow, 1000);
}

function livePlayer() {
	window.open("/custom/flash/liveplayer.php","livePlayer","width=400,height=100");
}

$(document).ready(function() {
	if ($("#show_img")) {
		var checkShow = setTimeout(currentShow, 1000);
	}
	var playerVersion = swfobject.getFlashPlayerVersion();
	var player = playerVersion.major + "." + playerVersion.minor + "." + playerVersion.release;
	if (player == "8.1.90") {
		$("#flash8").hide();
		$("#flashlite").show();
	}
});

function ecfcPlayer() {
	window.open("/custom/flash/current.php","ecfcPlayer","width=400,height=50");
}