
//_______________________________________________________________________
function showTtInfoBox(Id) {
    jQuery('#ttBuc' + Id).fadeIn();
    if(Id === "Flugzeiten") {
        getFlightTimes(ftArr);
    }
}

//_______________________________________________________________________
function closeTtInfoBox(Id) {
    jQuery('#ttBuc' + Id).fadeOut();
}

