// JavaScript Document
window.addEvent('domready', function() {
	var list = $$('#allmenu li.off');
	list.each(function(element) {
	 
		var fx = new Fx.Styles(element, {duration:150, wait:false});
	 
		element.addEvent('mouseenter', function(){
			this.style.backgroundImage='url(/imgs/bg_menu_on.gif)';
			fx.start({
				'width': 200
			});
		});
	 
		element.addEvent('mouseleave', function(){
			this.style.backgroundImage='url(/imgs/bg_menu_off.gif)';
			fx.start({
				'width': 180
			});
		});
	 
	});
});

function ouvre_popup(page,w,h,scroll) {
       window.open(page,"nom_popup","menubar=no, status=no, scrollbars="+scroll+", menubar=no, width="+w+", height="+h);
   }
