<!--
//################### Bildershow ###########################################
var num = 2;

function austausch(az) {
        document["pic_a"].src = "images/titel_" + num + ".jpg";
        }

function vorwahl() {
        setTimeout("austausch('a')", Math.random());

        num++;
        if (num == 11) num = 1;
        setTimeout("vorwahl()", 2000);
        }


//-->

