// JavaScript Document
var mem_src="";
    function CaricaPhoto(src){
mem_src=src;
src="../photo_gallery/big/"+src;
$('#ImgPhoto').fadeOut(250, function(){ 
  $(this).attr('src',src) 
      .bind('onreadystatechange load', function(){ 
     if (this.complete) $(this).fadeIn(500); 
  }); 
}); 

}


function ApriPopUp(imguno){
	if(mem_src==""){	mem_src=imguno; };
var file_photo="qtk_photo_gallery/popup_photo_mega.php?photo_mega="+mem_src;
var nome_finestra="pop1";
var variabili="toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes";
window.open(file_photo,nome_finestra,variabili);
}

function CaricaPhotoGallery(){
var img_preload="qtk_photo_gallery/images/preload.gif";
$("#qtk_photo_gallery").css('backgroundImage','url(' + img_preload +')'); 
$("#qtk_photo_gallery").css('background-repeat','no-repeat'); 
$("#qtk_photo_gallery").css('background-position','center center'); 

$.ajax({
   type: "POST",
   url: "qtk_photo_gallery/photo_gallery.php",
   data: "id_photo_gallery="+id_photo_gallery,

	success: function(risposta){
	
switch (risposta) {
         case 'Errore_01':
			alert("Attenzione!");
         break;

		 
		  default:

$("#qtk_photo_gallery").html(risposta);
		
		  }}});}
	
