$(window).load(function() {
  $("#news-list a").click(function() {
    $("#news-list a").removeClass('selected'); //deseleziono il vecchio thumb
    $(this).addClass('selected'); //seleziono quello nuovo
    $("#news-dettaglio").html(''); // svuoto il foto-frame, cosė appare il loader      
    //$("#news-dettaglio").css({left:'500px'}, 1500);
    refresh(this.rel); // aggiorno il foto-frame
    return false;
  })
});

function refresh(newsid) {
  $.get("/public/server/getAgenda.php", {str:newsid}, function(data){
    $("#news-dettaglio").ajaxSuccess(function(){
      //$(this).html(data).animate({left:'15px'}, 1800)
      $(this).html(data).fadeIn("slow");
    });
    $("#news-dettaglio").ajaxError(function(event, request, settings){
      $(this).append("Errore durante il caricamento di " + settings.url);
    });
  });
}

