function reindirizza(homepath) {
    location = homepath;
}

$(document).ready(function() {

    $('#list-galleries').hide();

    $(function() {
        $('div.scrollable').scrollable({
            size: 4,
            easing: 'linear',
            interval: 2000,
            loop: true
        });

    });

    $('a.calendar').click(function() {
        window.open($(this).attr('href') + '&value=' + $('#val1').val(),'','location=0,status=0,toolbar=0,scrollbars=0,resizable=0,width=250,height=230');
        return false;
    });

    $('#slide li img').css('display','show');

    $('#slide').cycle('fade');

    $('a.linkesterno').click(function() {
        window.open($(this).attr('href'),'','menubar=1,toolbar=1,location=1,directories=1,status=1,scrollbars=1,resizable=1,width=800,height=600');
        return false;
    });

});