/*
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ---- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
 Galeria de imagenes - asignacion de eventos.
 version:  d07-m01-a06.
 -- -- -- -- -- -- -- -- --
 Mauricio F. Tolezano - Acuataller (www.acuataller.com)
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ---- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
*/

var myrules = {
	'#galeria-imagenes ul a' : function(element){
		element.onclick  = function(){
			mostrarGaleria();
			cargarImagen(this.href, this.getElementsByTagName('img')[0].alt);			
			return false;
		}
	}
};

Behaviour.register(myrules);

