var imagenesMenu = [];

window.addEvent('domready', function() {
	new Asset.images( imagenes , {
		onProgress : function( imagen ) {
			imagenesMenu[ imagen ] = this;
		}
	});

	var lista = $$('a.opcion' ).each( function( enlace ) {
		enlace.addEvent( 'mouseover' , function() {
			var imagen = this.getFirst();																						
			imagen.oSrc = imagen.src;
			imagen.src =  imagen.src.substring( 0 , imagen.src.indexOf( '.gif' ) ) + 'a.gif';
		});
		
		enlace.addEvent( 'mouseout' , function() {
			var imagen = this.getFirst();
			imagen.src = imagen.oSrc;
		});

	});



});

