function getDescConc(indice){
	$('.desc_conc').html('<table width="100%"><tr><td align="center"><img src="./img/wait.gif"></td></tr></table>');
	$('#realcontent').load("./php/getDescConc.php?index_conc="+indice);
}

function getMenu(filter){
	$("#header").load("./php/getMenu.php?filter="+filter);
}
function addAdress(filter){
	if (filter!="")
		$("#newsletter").load("./php/send_confirm?filter="+filter);
}
function RemoveAdress(filter){
	$("#msg").load("./php/removeAdress?filter="+filter);
}

function getNextBan(){
	$("#bancontainer").load("./php/getBanner.php?index_ban="+(parseInt( $('#index_ban').val())+1));
}

function getPlayer(filter){
$("#player").load("./php/getPlayer.php?filter="+filter+"&play="+$("#is_playin").val());
$("#playlist").load("./php/getPlaylist.php?filter="+filter);
}

function getPlayerPlaying(filter){
$("#player").load("./php/getPlayer.php?filter="+filter+"&play=1");
$("#playlist").load("./php/getPlaylist.php?filter="+filter);
}

function getContent(filter){
	getMenu(filter);
	
	if (filter=='concerts'){
		$("#realcontent").load("./php/getDescConc.php");
	}else if (filter=='liens'){
		$("#realcontent").load("./php/getLiens.php");
	}else if (filter=='partenaires'){
		$("#realcontent").load("./php/getPartenaires.php");
	}else if (filter=='archives'){
		$("#realcontent").load("./php/getDescConc.php?index_conc=-1");
	}else if (filter=='news'){
		$("#realcontent").load("./php/getNews.php");
	}else if (filter=='mentions'){
		$("#realcontent").load("./php/mentions.php");
	}else if (filter=='pratique'){
		$("#realcontent").load("./php/contact.php");
	}else if (filter=='emploi'){
		$("#realcontent").load("./php/emploi.php");
	}

}




