    var text = new Array(
    "Maximalen Einsatz zeigen – um mehr zu erreichen",
    "Unmögliches verwirklichen – Vorhandenes verbessern",
    "Visionen erreichen – mit Professionalität und Zuverlässigkeit",
    "Innovative Lösungen suchen – Wirtschaftlich umsetzen",
    "Erfahrung - Kompetenz und Kommunikation");
    var i;
    i=4*(Math.random());
    i= Math.round(i);
    document.getElementById('footer2').innerHTML = text[i];
    setTimeout("footerein(document.getElementById('footer2'))", 1);
    function footerein (element, current2) {
    if (typeof current2 == 'undefined') {
            current2 = 0;
        }
        if (typeof element.style.opacity != 'undefined') {
            element.style.opacity = current2;
            }
        else if (typeof element.style.filter != 'undefined') {
            element.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=' + (current2 * 100) + ')';
            }
        current2 += 0.025;
        current2 = Math.round(current2 * 100) / 100;
        if(current2<1){
            setTimeout(function () { footerein(element, current2); }, 100);
        }
        else {
            setTimeout(function () { footeraus(element, 1); }, 2500);
        }
}

    function footeraus (element, current2) {
    if (typeof current2 == 'undefined') {
            current2 = 0;
        }
        if (typeof element.style.opacity != 'undefined') {
            element.style.opacity = current2;
            }
        else if (typeof element.style.filter != 'undefined') {
            element.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=' + (current2 * 100) + ')';
            }
        current2 -= 0.025;
        current2 = Math.round(current2 * 100) / 100;
        if(current2>0){
            setTimeout(function () { footeraus(element, current2); }, 100);
        }
        else {
            i=4*(Math.random());
            i= Math.round(i);
            document.getElementById('footer2').innerHTML = text[i];
            setTimeout(function () { footerein(element, 0); }, 1000);
        }
}