$(document).ready(function() {

 	getOnAir();
 	
	setInterval(function(){
		getOnAir();
	},5000);
	
	if($('.ngg-galleryoverview').length > 0){
		html = '<span style="display: block; margin: 10px 0pt -3px;">&laquo; <a href="http://www.radiobus.fm/les-galeries" class="gallery_more">Toutes les galeries</a></span>';
		$("#gauchePages").contents('h3').eq(0).after(html);
		$("#gauchePages").contents('h3').remove();
	}
	
	$('#portfolio').innerfade({ speed: 'fast', timeout: 4000, type: 'sequence', containerheight: '120px' }); 

	
});

function getOnAir(){
	data_string = "action=getOnAir";
	$.ajax({
   		type: 'POST',
   		url: '/podcast/communication.php',
  		data: data_string,
   		success: function(msg){
   			$('#onAir').html(msg);
   			Cufon.replace('#enCeMoment,#titreArtiste,#enCeMomentCustom,#titreArtisteCustom', {hover: true});
   		}	
 	});	
}

window.onload = function() {
	var audioEl = document.getElementById("audioTag");
	if(audioEl != null){
		audioEl.load();
		audioEl.play();	
	}

};





