document.observe('dom:loaded',function(){
	inicio();
});
function inicio()
{
	var catalogo = $$('.imagen_contenido IMG');
	catalogo.each(function(el){
		//alert(el.readAttribute('rel'));
		el.observe('click',function(ev)
				{
					ev.stop();
					//alert(this.readAttribute('rel'));
					nuevo_carrusel('album_fotografico', this.readAttribute('rel'), 0, 'Album', 500, 500, 0);
				});
	});
	
	if($('mensaje_flash'))
	{
			//alert($('flashMessage').innerHTML);
			$('enlace_cerrar_mensaje_flash').observe('click',function(ev){
				ev.stop();
				$('mensaje_flash').hide();
				$('ocultador_mensaje_flash').hide();
			});
			
			document.observe('keypress',function(ev)
			{
				if(ev.keyCode==Event.KEY_RETURN && $('mensaje_flash').visible())
				{
					ev.stop();
					$('mensaje_flash').hide();
					$('ocultador_mensaje_flash').hide();
				};
			});
	}
}
