﻿var Larghezza = $(window).width()
$(document).ready(function () {

    $("#BarraMenu").fadeIn(3500);
    $("#Logo").animate({ "top": "10px" }, 2000);

    $("#ContattaLi").click(function (e) {
        $("#ContattaDiv").animate({ "top": "-3px" }, 2000);
    });
    $("#X").click(function (e) {
        $("#ContattaDiv").animate({ "top": "-131px" }, 1500);
    });

    $('#infobike').delay(1500).animate({ "left": "0px" }, 1500);
    Animazione();
});

function Animazione() {
    animate_loop = function () {
        $('#lastminute').animate({ "right": Larghezza + "px" }, 30000, function () {

            $('#lastminute').css("right", 0);
           
            animate_loop();

        });


    }

    animate_loop();
}
