
var img = new Array();
img[0] = new Image(); img[0].src = "bilder/dia0.jpg";
img[1] = new Image(); img[1].src = "bilder/dia1.jpg";
img[2] = new Image(); img[2].src = "bilder/dia2.jpg";
img[3] = new Image(); img[3].src = "bilder/dia3.jpg";

var zahl = 0;

var zeit = 2000;

function diashow()
	{
	if(zahl > 3)
	{
	 zahl = 0;
	}
	window.document.images[0].src = img[zahl].src;
	
	zahl = zahl + 1;
	
	window.setTimeout("diashow()", zeit);
	}
	
function doppel(URI1,F1,URI2,F2) {
  frame1=eval("parent."+F1);
  frame2=eval("parent."+F2);
  frame1.location.href = URI1;
  frame2.location.href = URI2;
	}
	
	
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function drei(URI1,F1,URI2,F2,URI3,F3) {
  frame1=eval("parent."+F1);
  frame2=eval("parent."+F2);
  frame3=eval("parent."+F3);
  frame1.location.href = URI1;
  frame2.location.href = URI2;
  frame3.location.href = URI3;
} 





	


