<!-- Fonctions pour l'affichage du menu déroulant
window.onload=montre;
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}
function cache() {
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
}

function changeImage(parent_cat_id,cat_id,id) {
	ref = "realisations.php?parent_cat_id="+parent_cat_id+"&cat_id="+cat_id+"&image_id="+id;
	window.location.href=ref;
}
//-->
