// 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(){
	$("img[rel]").overlay();
var src="../photo_gallery/mega/"+mem_src;
	$('#BigImgPhoto').fadeOut(250, function(){ 
  $(this).attr('src',src) 
      .bind('onreadystatechange load', function(){ 
     if (this.complete) $(this).fadeIn(500); 
  }); 
}); 
	
	
	}

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');


$.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);
		
		  }}});}
	
