count = 1;

meineFotos = new Array();

meineFotos[1] = "./extern/werbung/mcrohn2012.jpg";
meineFotos[2] = "./extern/werbung/onstage.jpg";
meineFotos[3] = "./extern/werbung/werbung.jpg";
meineFotos[4] = "./extern/werbung/konzert04_2012.jpg";
meineFotos[5] = "./extern/werbung/werbung2.jpg";

link = new Array();

link[1] = "http://www.spielmannszug-dringenberg.de/index.php?id=98";
link[2] = "http://www.onstage-veranstaltung.de/";
link[3] = "mailto:info@klmultimedia.de";
link[4] = "http://www.burgmusikanten.de/";
link[5] = "mailto:info@klmultimedia.de";



function foto_laden()
{
document.bild.src = meineFotos[count];
ziel = link[count];
timerid = setTimeout("nextpic()",10000);
}

function nextpic()
{
count ++;

if (count > 5){
	count = 1;
	}
foto_laden();
}

