$(document).ready(function() {
	try{
		var btnCerrar = $('#cerrar');
		var btnAbrir = $('#abre_pop');
		btnAbrir.click(function(event) {
				event.preventDefault();
				$('#formul').fadeIn("slow");
		});
		btnCerrar.click(function(event) {
				event.preventDefault();
				$('#formul').fadeOut("slow");
		});
	}catch(e){}
});

$(function() {
	// Se ha tocado el archivo "jquery.lightbox-0.5.js" para que
	//	funcione el salir de la presentacion de fotos con la tecla "esc":
	$('#gallery a').lightBox({overlayBgColor:"#339933",
							  txtImage:"Imagen",
							  txtOf:"de",
							  imageLoading:'imagenes/general/lightbox-ico-loading.gif',
							  imageBtnPrev:'/imagenes/general/lightbox-btn-prev.gif',
							  imageBtnNext:'/imagenes/general/lightbox-btn-next.gif',
							  imageBtnClose:'/imagenes/general/lightbox-btn-close.gif',
							  imageBlank:'/imagenes/general/lightbox-blank.gif'});
});


