
			var how_many_ads = 2;

var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;

if (ad==1) {
txt="Tierferienplatz-a3";
url="http://tierferienplatz-a3.ch";
alt="Tierferienplatz-a3";
bild="../jss/h01.jpg";

}


if (ad==2) {
txt="Tierferienplatz-a3";
url="http://tierferienplatz-a3.ch";
alt="Tierferienplatz-a3";
bild="../jss/h02.jpg";

}


document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + bild + '\"');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('</center>');
		
