function abrir(id, url) {

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

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