
//Hauptseite/Inhalt
// Bildwechsel

<!-- Script vor Browsern verbergen
// Allgemeine Variable
var bild = new bildarray;
var name = new namearray;
var i = 1;
// Arrays, Funktionen, Objekte
function bildarray() {
this[0] = "bild/matthew.gif"
this[1] = "bild/htor.gif"
this[2] = "bild/fiori.gif"
this[3] = "bild/bremen.gif"
this[4] = "bild/hamburg.gif"
this[5] = "bild/lord.gif"
this[6] = "bild/stralsund.gif"
this[7] = "bild/rostock.gif"
this[8] = "bild/globen.gif"
this[9] = "bild/wkarte.gif"
this[10]= "bild/stralsund.gif"
this[11]= "bild/greifswald.gif";
this[12]= "bild/htor.gif";
}
function namearray() {
this[0] = "leben"
this[1] = "rente"
this[2] = "kranken"
this[3] = "beruf"
this[4] = "unfall"
this[5] = "haftpflicht"
this[6] = "gebaeude"
this[7] = "hausrat"
this[8] = "online"
this[9] = "link"
this[10]= "info"
this[11]= "impressum"
this[12]= "home";
}
function wechsel() {
if (i<11) {i+=1;} 
else {i=0;}
document.images[0].src = bild[i];
setTimeout("wechsel()",3600);
}

// --> Ende







