// Fichier galerie

function affiche_cache(calque,image) {
	if (document.getElementById(calque).style.display != "block")
	{ 
		document.getElementById(calque).style.display = "block";
		MM_swapImage(image,'','images/cat_fleche_blue_bas.gif',1);
		return;
	}
	if (document.getElementById(calque).style.display != "none")
	{
		MM_swapImage(image,'','images/cat_fleche_blue.gif',1);
		document.getElementById(calque).style.display = "none";
	}
}

function affiche(calque,image)
{
	document.getElementById(calque).style.display = "block";
	MM_swapImage(image,'','images/cat_moins.gif',1);
}
function cache(calque,image)
{
	MM_swapImage(image,'','images/cat_plus.gif',1);
	document.getElementById(calque).style.display = "none";
}

function affichePaneau()
{
	document.getElementById("commentaire").style.display = "block";
	document.getElementById("commentaire").style.height="430px";
	document.getElementById("commentaire").style.width="680px";
	document.getElementById("commentaire").style.backgroundColor = "#EFEFEF";
	
}
function cacheComment()
{
	document.getElementById("commentaire").style.display = "none";
}