//
//$(document).ready(function(){
//   $("#accordion h2 a#enlaceajax").click(function(evento){
//      evento.preventDefault();
//      $("#ajax").load("pags/galeria_1.php");
//	  var galleries = $('.ad-gallery').adGallery();
//	  $('#toggle-slideshow').click(
//      function() {
//        galleries[0].slideshow.toggle();
//        return false;
//      }
//    );
//   });
//})


function abrir(id, url) {

	//Se actualiza el contenido con AJAX
	$("#loader_gal").ajaxStart(function(){
		if ($("#"+id).css('display') != 'none') {
	   		$(this).fadeIn();
	   	}
	});
	$("#loader_gal").ajaxStop(function(){
		$(this).fadeOut();
	});
	
	$.ajax({
	  url: url,
	  cache: true,
	  success: function(html){
	  	$("#"+id).empty();
	  	$("#"+id).append(html);
		var galleries = $('.ad-gallery').adGallery();
	  }
	});
}

function cerrar(id) {
	$("#"+id).hide("blind", {}, 1000);
	abierto = false;
}

