/* 
 * funzione che lancia la fotogallery 
 */
$(window).load(function() {
  if (($("#gallery ul li").length)>1) { // se ci sono pių di 15 foto
    $('#gallery-box').append("<a id='l1' href='javascript:void(0)' class='gal-ctrl disabled'>&laquo; precedenti</a>");
    $('#gallery-box').append("<a id='l2' href='javascript:void(0)' class='gal-ctrl'>seguenti &raquo;</a>");
    $("#gallery").jCarouselLite({
      btnPrev:"#l1", btnNext:"#l2", circular:false, speed:800, visible:1, scroll:1
    });
  }
  $("#gallery li a").click(function() {
    $("#gallery li a").removeClass('selected'); //deseleziono il vecchio thumb
    $(this).addClass('selected'); //seleziono quello nuovo
    $("#foto-frame").html(''); // svuoto il foto-frame, cosė appare il loader      
    refresh(this.rel); // aggiorno il foto-frame
    return false;
  })
});

function refresh(photoid) {
  $.get("/public/server/getPhoto.php", {str:photoid}, function(data){
    $("#foto-frame").ajaxSuccess(function(){
      $(this).html(data).fadeIn("slow"); // aggiorno il foto-frame
    });
    $("#foto-frame").ajaxError(function(event, request, settings){
      $(this).append("Errore durante il caricamento di " + settings.url);
    });
  });
}

