document.observe('dom:loaded', function()
{
	if($('selector_fotos')){
		$('selector_fotos').observe('change', function(){
			if(this.value!=''){
				nuevo_carrusel('carrusel', this.value, 1, 'Catálogo Ocioturix', 500, 500);
			}
		});
	}
	if($('enlace_cerrar_mensaje_flash'))
	{
		$('enlace_cerrar_mensaje_flash').observe('click',function(ev)
		{
			ev.stop();
			//alert(ev.findElement().id);
			this.up('#mensaje-error-formulario').fire('ventana:cerrar');
			//alert(c.id);
			//this.fire('ventana:cerrar');
		});	
	
		$('mensaje-error-formulario').observe('ventana:cerrar', cerrar_ventana);
	}
	
	if($('enlace_cerrar_popup'))
	{
		$('enlace_cerrar_popup').observe('click',function(ev)
		{
			ev.stop();
			//alert(ev.findElement().id);
			this.up('#mensaje-popup').fire('ventana:cerrar');
			//alert(c.id);
			//this.fire('ventana:cerrar');
		});	
	
		$('mensaje-popup').observe('ventana:cerrar', cerrar_ventana);
	}
	
	if($('mostrar-popup'))
	{
		$('mensaje-popup').observe('ventana:cerrar', cerrar_ventana);
		
		$('mostrar-popup').observe('click',function(ev)
		{
			this.popup = 'ok';
			$('mensaje-popup').show();
		});	
	}
	
	
});

function cerrar_ventana()
{
	this.hide();
	if($('gris'))
	{
		$('gris').remove();
	}
}
