



var how_many_ads = 9;

var now = new Date()

var sec = now.getSeconds()

var ad = sec % how_many_ads;

ad +=1;

if (ad==1) {

alt="The village hall";

banner="picturechange/1.jpg";

width="200";


}

if (ad==2) {

alt="The playground";

banner="picturechange/2.jpg";

width="200";
}

if (ad==3) {

alt="West street";

banner="picturechange/3.jpg";

width="200";
}

if (ad==4) {

alt="The footpath";

banner="picturechange/4.jpg";

width="200";
}

if (ad==5) {

alt="The village club";

banner="picturechange/5.jpg";

width="200";
}

if (ad==6) {

alt="Bensted road";

banner="picturechange/6.jpg";

width="200";
}

if (ad==7) {

alt="The village sign";

banner="picturechange/7.jpg";

width="200";
}

if (ad==8) {

alt="The Church";

banner="picturechange/8.jpg";

width="200";
}

if (ad==9) {

alt="The wild life";

banner="picturechange/9.jpg";

width="200";
}


document.write('<left>');

document.write('<img src=\"' + banner + '\" width=')

document.write(width + ' ');

document.write('alt=\"' + alt + '\" align=right border=0>');

document.write('</left>');






