var ScrollList							= new Class (
{
	Implements:							[Events],
	
	/**	******************************************************
	 *						CONSTRUCTEUR
	 *                                                      **/
	initialize:							function (oB)
	{								
		this.nAlpha						= 1 || oB.nAlpha;
		this.elList						= $(oB.elList);			
		this.elMenu						= $$(oB.elMenu);
		// ALERTE EN CAS D'ABSENCE DES BALISES
		/*
		if (this.elList==null || this.elMenu=="")
			alert ('Listes déroulantes non trouvées !');
		*/	
		this.init_blocks ();
		this.mouse_events ();
	},
	
	init_blocks:						function ()
	{
		this.elList.fade ('hide');
	},
	
	mouse_events:						function ()
	{			
		var o							= this;
		this.elMenu.each (function (elValue)
		{
			elValue.addEvents (
			{			
				'mouseover':			function (e)
				{
					e.stop ();					
					o.elList.fade (o.nAlpha);
				},
				'mouseout':				function (e)
				{
					e.stop ();
					o.elList.fade (0);
				}
			});	
		});
	}
	
});