// JavaScript Document

function switchDisplay (rubClic) {
	document.getElementById("partie_droite_page_projet_1").style.display = "none";
	document.getElementById("partie_droite_page_projet_2").style.display = "none";
	document.getElementById("partie_droite_page_projet_3").style.display = "none";
	$("#"+rubClic).fadeIn("slow");
	
	document.getElementById("associations").setAttribute("style","background:url(images/titre_projet_1.png)");
	document.getElementById("artistes").setAttribute("style","background:url(../images/titre_projet_2.png)");
	document.getElementById("entreprises").setAttribute("style","background:url(../images/titre_projet_3.png)");
	

	if (rubClic == "partie_droite_page_projet_1") {document.getElementById("associations").setAttribute("style","background:url(images/titre_projet_1_S.png)");}
	else if (rubClic == "partie_droite_page_projet_2") {document.getElementById("artistes").setAttribute("style","background:url(images/titre_projet_2_S.png)");}
	else if (rubClic == "partie_droite_page_projet_3") {document.getElementById("entreprises").setAttribute("style","background:url(images/titre_projet_3_S.png)");}

}
