$(document).ready(function() {
	//alert('Iniciando')
	$("#detalle").dialog({autoOpen:false,width:800,title:'Detalle del libro',buttons:{'OK':function() { $(this).dialog("close"); }}});
});

function click_detalleLibro(id_libro, esp_id){
	window.location = 'index.php?id_lib='+id_libro+'&esp_id='+esp_id;
	return;
	$.ajax({
  		 	url: "eventos/detalle.php?evento=click_detalleLibro",
  			context: document.body,
			type:'post',
			dataType:'html',
			data:{lib_id:id_libro},
  			success: function(html){
				//$("#detalle").html(html);
				//$("#detalle").dialog('open');
				cambiaContenidoPrincipal(html);
				$(".volver").button({
            		icons: {
                		primary: "ui-icon-circle-arrow-w"
            	}});
			}
	});	
}

function click_detalleLibro2(id_libro){
	$.ajax({
  		 	url: "eventos/detalle.php?evento=click_detalleLibro",
  			context: document.body,
			type:'post',
			dataType:'html',
			data:{lib_id:id_libro},
  			success: function(html){
				//$("#detalle").html(html);
				//$("#detalle").dialog('open');
				cambiaContenidoPrincipal(html);
				$(".volver").button({
            		icons: {
                		primary: "ui-icon-circle-arrow-w"
            	}});
			}
	});	
}
