//JavaScript Document
$(document).ready(function(){
	$("#accordion li").click(muestra_gal);
	jQuery('#accordion').accordion({
		autoheight: false,
		alwaysOpen: false
	});
	$(".imgPrintfoto").click(imprimir_foto);
});

muestra_gal = function(){
	var hashIdObra = this.id;
	//alert(idObra);
	obtieneFotos(hashIdObra, 1);
}

imprimir_foto = function(){
	var hashFoto = this.id;
	//window.open("http://www.google.com", "Imp. Foto", "toolbar=0, location =0, menubar =0, directories =0, resizable=0, scrollbars =1, width=700, height=800");
	 window.open ("/imprime_foto.php?foto=" + hashFoto, "impresion", "toolbar=0, location =0, menubar =0, directories =0, resizable=0, scrollbars =1, width=700, height=800");
	 
	 //"/imprime_foto.php?foto=" + hashFoto + "&"
	 
}

obtieneFotos = function(hashIdObra, pagAct){
	//alert(hashIdObra);
	$.ajax({
    	type:     "POST",
        url:      "/include/obtiene_fotos.php",
        async:    true,
        data:     "hash_id_obra=" + hashIdObra + "&pag_act=" + pagAct,
        success:  function() { construye_vista(arguments[0]) },
        error:    function() { construye_vista("Error en la Petici&oacute;n al Servidor") }        
	}); 
}

construye_vista = function(respuesta) {
	$('#divContenido_Temas_2').html(respuesta);
}