
// Copyright 1996, Infohiway, Inc. (http://www.infohiway.com)
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
<!--
function adArray() {
 for (i=0; i*2<adArray.arguments.length; i++) {
  this[i] = new Object();
  this[i].src = adArray.arguments[i*2];
  this[i].href = adArray.arguments[i*2+1];
 }
 this.length = i;
}
function getAdNum() {
 dat = new Date();
 dat = (dat.getTime()+"").charAt(8);
 if (dat.length == 1)
  ad_num = dat%ads.length;
 else
  ad_num = 0;
 return ad_num;
}
var ads = new adArray(
"/images/rotator/church.jpg","#",
"/images/rotator/allottment.jpg","#",
"/images/rotator/thelanes.jpg","#",
"/images/rotator/school.jpg","#",
"/images/rotator/warrenhill-2.jpg","#",
"/images/rotator/village-hall.jpg","#",
"/images/rotator/youth-shelter.jpg","#",
"/images/rotator/heathcommon.jpg","#",
"/images/rotator/multi-use-games-area.jpg","#",
"/images/rotator/graveyard.jpg","#",
"/images/rotator/thedowns.jpg","#",
"/images/rotator/childrens-play-area2.jpg","#",
"/images/rotator/warrenhill-1.jpg","#",
"/images/rotator/quarry-aerial.jpg","#",
"/images/rotator/thestreet.jpg","#",
"/images/rotator/walking-on-the-downs.jpg","#",
"/images/rotator/veras-shelter.jpg","#"
);



var ad_num = getAdNum(); 
document.write('<IMG SRC="'+ads[ad_num].src+'" '
+'WIDTH="400" HEIGHT="300" BORDER="0" alt="" title="" align="right" style=" margin-left: 10px; margin-bottom: 50px;" name=js_ad />');
link_num = document.links.length-1;
function rotateSponsor() {
 if (document.images) {
  ad_num = (ad_num+1)%ads.length;
  document.js_ad.src = ads[ad_num].src;
  document.links[link_num].href = ads[ad_num].href;
  setTimeout("rotateSponsor()",2500);
 }
}
setTimeout("rotateSponsor()",2500);
// -->
