
var activeMenu=0;
window.addEvent("domready", function(){
  $$('div#content_bandeau').removeClass('content_bandeau');
  if ($$('div#content_bandeau ul.menu').length>0) {
    var lesli = $$('div#content_bandeau ul.menu')[0].getChildren();  
		for (xl=1; xl<=lesli.length; xl++){ 
			 lesli[xl-1].addEvent("mouseenter", function(){
        for (yl=1; yl<=lesli.length; yl++){                
            lesli[yl-1].morph('.menu2short',{duration:'short'});
        }
			this.morph('.menu2hover',{duration:'short'});        
		});
		 lesli[xl-1].addEvent("mouseleave", function(){
        for (yl=1; yl<=lesli.length; yl++){
          lesli[yl-1].morph('.menu2normal',{duration:'short'});        
        }
      });
		}
  } 

});


