$(document).ready(function() {
	$("#menu > ul > li").click(function() {
		if($(this).find("ul").css("display") == "none") {
			$("#menu > ul#accordion > li > ul").hide("slow");
			$(this).find("ul").show("slow");
		}
	});
});
function openMenu(name) {
	$("#"+name).find("ul").show();
}
function popupImage(img) {
    titre="Agrandissement";
    var top = (screen.height-400)/2;
    var left = (screen.width-400)/2;
    w = open('','image','top='+top+',left='+left+',width=400,height=400,toolbar=no,scrollbars=no,resizable=yes'); 
    w.document.write('<html><head><title>'+titre+'</title><style>body { text-align: center; } p{ font: 12px arial; text-align: center; }</style></head>'); 
    w.document.write('<script language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+50); window.focus();} else { setTimeout("checksize()",250) } }</'+'SCRIPT>'); 
    w.document.write('<script language=javascript>function fitsize() { document.images[0].height = document.body.clientHeight; if(document.images[0].width > document.body.clientWidth) { document.images[0].width = document.body.clientWidth; } }</'+'SCRIPT>');
    w.document.write('<body onload="checksize()" onresize="fitsize()" onblur="window.close()" leftMargin="0" topMargin="0" marginwidth="0" marginheight="0">');
    w.document.write('<IMG src="'+img+'" border="0" title="Redimensionner la fenêtre pour changer la taille de l\'image">');
    w.document.write('</body></html>'); 
    w.document.close(); 
}