﻿var aY = 25, zY = 105;
var objDiv = null;
function moveDiv(ctl) {
    objDiv = document.getElementById(ctl);
    doMoveDiv();
}
function doMoveDiv() {
    if (aY >= zY) {        
        aY = 25;
        document.getElementById('imgBenv').style.display = 'none';
        location.href = '/GloboTrasporti.aspx';
    }
    else {
        aY = aY + 3;
        objDiv.style.marginTop = (-1 * aY) + "px";
        setTimeout('doMoveDiv()', 2);
    }
}
function setBckImg(ctl) {
    var obj = document.getElementById(ctl);
    obj.style.background = "#efefef";
}
function remBckImg(ctl) {
    var obj = document.getElementById(ctl);
    obj.style.background = "";
}
