/* JavaScriptCompressor 0.8 [www.devpro.it], thanks to Dean Edwards for idea [dean.edwards.name] */
$(document).ready(function (){
$(
"#menu dt.toggleSubMenu span"
).each(function (){
var TexteSpan=$(this).text();$(this).replaceWith(
'<a href="" title="Afficher le sous-menu">'
+TexteSpan+
'<\/a>'
);});$(
"#menu dt.toggleSubMenu > a"
).click(function (){if ($(this).next(
"ul.subMenu:visible"
).length !=0){$(this).next(
"ul.subMenu"
).slideUp(
"normal"
);}
else {$(
"#menu ul.subMenu"
).slideUp(
"fast"
);$(this).next(
"ul.subMenu"
).slideDown(
"fast"
);}
return false;});});function affichage_popup(nom_page,nom_fenetre){window.open (nom_page,nom_fenetre,config=
"height=600, width=800, toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=yes"
)}