/* SCRIPTS GENERAUX */

// script du portfolio (pages SPIP) :
function fb_portfolio(source) {
	document.getElementById('divImgPortfolio').style.display = 'block';
	document.getElementById('imgPortfolio').src = source ;
	location.href = window.location.href + "#portfolio";
}


/* masquage de la note sur les tests (v. pied de page) apres un delai ( 7 sec. ) */
var delai; var deja = "";
function fb_masq() { document.getElementById('noteTests').style.display = 'none'; };
function fb_delai() {
	if (deja != "oui") { window.clearTimeout(delai); }
	document.getElementById('noteTests').style.display = 'block';
	delai = window.setTimeout("fb_masq()",7000); deja = "oui";
	// if (commande == 'stopper') { window.clearTimeout(delai); }
}



/* PAGE SPECTACLES */

// script du porftolio (pages fb_spectacles) :
function fb_portfSpect(numSpect,source) {
	document.getElementById('divImgPortfolio').style.display = "block";
	document.getElementById('imgPortfolio').src = "fb_imports/images/" + numSpect + "/" + source;
}


// affichage des vidéos (pages fb_spectacles) :
var videoEnCours = "";
function fb_videos(video) {
	if (videoEnCours != "") document.getElementById(videoEnCours).style.display = "none";
	document.getElementById(video).style.display = "";
	document.getElementById('videos').style.display = "";
	videoEnCours = video;
}