function runSlideUp(elt) {
2 if ($('#'+ elt[1]).is(":visible"))
3 $('#'+ elt[1]).slideUp('show');
4}
5
6function runSlideDown(elt) {
7 if ($('#'+ elt[1]).is(":hidden"))
8 $('#'+ elt[1]).slideDown('show');
9 else
10 $('#'+ elt[1]).slideUp('show');
11}
12
13function runSlide(elt, _this){
14 if (elt[0] == $(_this).attr("id"))
15 runSlideDown(elt);
16 else if (elt[0] != $(_this).attr("id"))
17 runSlideUp(elt);
18}
19
20$(document).ready(function(){
21 $(".AnimMenuDeroulant").click(function(){
22
23 if ($.isArray(menu_elements) && menu_elements.length > 0 )
24 for ( var i = 0 ; i < menu_elements.length ; i ++ )
25 runSlide(menu_elements[i], this);
26
27 });
28});
29 
