links=new Array();

links[0]="http://www.2raloa.de"; // URL des Projektes Nr.0

links[1]="http://www.tourserver.de/asdive";   // URL des Projektes Nr.1

links[2]="";    // URL des Projektes Nr.2

links[3]="http://www.uni-regensburg.de/Fakultaeten/Jura/steiner/index.php";    // URL des Projektes Nr.3

links[4]="http://www.getnatural.de/index.php";    // URL des Projektes Nr.4



var geschwindigkeit, anzahl, i, stop ;

geschwindigkeit=4000; // Geschwindigkeit des Bilderwechsels

anzahl=links.length; // Anzahl der Austauschbilder

stop=0;

i=0;



function BildWechsel()

{

if (stop==0)

{

i=i+1;

if (i==anzahl) i=0;

var bild, pfeil;

bild="grafik/mini" + i + ".jpg";

document.bild.src=bild;

pfeil="grafik/Pfeil" + i + ".gif";

document.pfeil.src=pfeil;

}

setTimeout ("BildWechsel()",geschwindigkeit);

}



function Stop()

{

stop=1;

}



function Start()

{

stop=0;

}



function Link()

{

Stop();

var link;

link=links[i];

if(link!="") window.open(link,"","");

}
