function checkLiveBroadcast() {  
	$.ajax({
	   type: "post",
	   data: ({c:1}), /* FF needs something to "post"*/
	   url: "http://www.sufilive.com/checkBroadcastStatus.cfm",
	   cache:false,
	   ifModified:false,
	   success: function(data){
		 if (jQuery.trim(data) == 'OK') {
		 	// live just turned on!
			$('#mp3').show().load("http://www.sufilive.com/mp3/index.cfm");
			$('#liveBar').slideDown("slow");
			}
		else if ((jQuery.trim(data) == 'dispAlready')) {
			// live + alert already displayed
			$('#liveBar').show();
		}
		else {
			//not live
			$('#mp3').hide();
			$('#liveBar').fadeOut();
			
		}


	   },
	   error: function(XMLHttpRequest, textStatus, errorThrown){
			//$("#status").html(errorThrown);
	   }
	 });
	
	$.doTimeout( 33000, function(){ 
		checkLiveBroadcast();
	}); 
	
}

$(document).ready(function(){
	checkLiveBroadcast();
});