window.addEvent('domready', function(){


	
    
	/*INICIO DEL CÓDIGO PARA LA GALERÍA DE IMAGENES*/
	
	var drop = $('large');
	var dropFx = drop.effect('background-color', {wait: false}); // wait is needed so that to toggle the effect,
	 
	$$('.item').each(function(item)
	{
		item.addEvent('click', function(e)
		{
			drop.removeEvents();
			drop.empty();
			var a = item.clone();
			a.inject(drop);
			dropFx.start('c8c8c8').chain(dropFx.start.pass('02428A', dropFx));
			
		});
	 
	});
	
	/*FIN DEL CÓDIGO PARA LA GALERÍA DE IMAGENES*/
	
	/*INICIO DEL SCROLL PARA VER LAS IMAGENES*/
	var scroll = new Scroller('div_display_photos', {area: 100, velocity: 0.15});
    $('div_display_photos').addEvent('mouseover', scroll.start.bind(scroll));
    $('div_display_photos').addEvent('mouseout', scroll.stop.bind(scroll));
	/*FIN DEL SCROLL PARA VER LAS IMAGENES*/
	
	
	
});