	 var aktiv1 = window.setInterval("Animation1()",4000);
	 window.setTimeout("var aktiv2 = window.setInterval('Animation2()',4000);",2000);
	 //var aktiv2 = window.setInterval("Animation2()",4000);
	 var b = new Array();
	 var a = new Array();
	 var Ziel1 = "http://www.adolfniethammer.de/";
	 var Ziel2 = "http://www.autohaus-benz.de/";
	 b[0] = new Image(); b[0].src = "http://www.vfl-wintersport.de/sponsor-hochdorfer.gif";
	 b[1] = new Image(); b[1].src = "http://www.vfl-wintersport.de/sponsor-autobenz.gif";
	 b[2] = new Image(); b[2].src = "http://www.vfl-wintersport.de/sponsor-ahg.gif";
	 b[3] = new Image(); b[3].src = "http://www.vfl-wintersport.de/sponsor-niethammer.gif";

	 a[0] = "http://www.hochdorfer.de/";
	 a[1] = "http://www.autohaus-benz.de/";
	 a[2] = "http://www.ahg-wackenhut.de/";
	 a[3] = "http://www.adolfniethammer.de/";

	 var i = 0;
	 var j = 2;

	 function href1() {
		F1 = window.open(Ziel1,"Fenster1","width=810,height=600,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes");
	 }

	 function href2() {
		F1 = window.open(Ziel2,"Fenster1","width=810,height=600,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes");
	 }

	 function Animation1() {
		if (i > (b.length - 1)) i = 0;
		document.getElementById("sponsorbild1").src = b[i].src;
		Ziel1 = a[i];
		i++;
	 }

	 function Animation2() {
		if (j > (b.length - 1)) j = 0;
		document.getElementById("sponsorbild2").src = b[j].src;
		Ziel2 = a[j];
		j++;
	 }
