var current=1;
$(document).ready(function() {
    $('.prev').click(function() {
        if(current==1){
            current=tot;
        }else{
            current=current-1;
        }
        $('#gallery').css('background-image', 'url('+dir+'/'+current+'.jpg)');
        $('#dettagli').html(desc[current-1]);
        return false;
    });
    $('.next').click(function() {
        if(current==tot){
            current=1;
        }else{
            current=current+1;
        }
        $('#gallery').css('background-image', 'url('+dir+'/'+current+'.jpg)');
        $('#dettagli').html(desc[current-1]);
        return false;
    });
    $('.prev').mouseover(function() {
         $(this).attr("src", 'img/prev1.png');
    });
    $('.next').mouseover(function() {
        $(this).attr("src", 'img/next1.png');
    });
    $('.prev').mouseout(function() {
         $(this).attr("src", 'img/prev.png');
    });
    $('.next').mouseout(function() {
        $(this).attr("src", 'img/next.png');
    });
});
