<!-- Hide from JavaScript-Impaired Browsers
/* Leigh here is where you increase or decrease the
   the number of sponsors banners in the rotation - sponsors=5 at present.
   (note that the counting starts at 0 and must remain so last in sequence
   when total is 6 = No.7 OK */
   number_of_sponsors=8;

var sctr=0;
var halt=0;
var isn=new Array();
for (i=0;i<number_of_sponsors;i++){
 isn[i]=new Image();
}

/* Leigh here you add or ammend the actual banner
   images that are are currently running. */
isn[0].src="http://www.fantasyfactory.co.uk/images/sponsors/SpeedForex_468x60_Hand.gif";
isn[1].src="/images/banners/ff_soccer_as.gif";
isn[2].src="http://www.fantasyfactory.co.uk/images/sponsors/SpeedForex_468x60_Hand.gif";
isn[3].src="http://oz.valueclick.com/cycle?host=hs0161266&size=468x60&b=indexpage&noscript=1";
isn[4].src="http://www.lduhtrp.net/image-1904397-5042492";
isn[5].src="http://oz.valueclick.com/cycle?host=hs0161266&size=468x60&b=indexpage&noscript=1";
isn[6].src="/images/banners/ff_racing_col_as.gif";
isn[7].src="http://www.BodyJewelleryShop.co.uk/bjs_ff_468x60.gif";

/* Leigh here add relace or take out the URLS of the banners
   of your sponsors and where they should go when clicked. */
var durl=new Array();
durl[0]="http://www.speedforex.com/Gateway.aspx?gid=1102";
durl[1]="http://www.fantasyfactory.co.uk/sport/default.asp?SPORT_ID=3";
durl[2]="http://www.speedforex.com/Gateway.aspx?gid=1102";
durl[3]="http://oz.valueclick.com/redirect?host=hs0161266&size=468x60&b=indexpage&v=0";
durl[4]="http://www.dpbolvw.net/click-1904397-5042492";
durl[5]="http://oz.valueclick.com/redirect?host=hs0161266&size=468x60&b=indexpage&v=0";
durl[6]="http://www.fantasyfactory.co.uk";
durl[7]="http://www.body-jewellery-shop.co.uk/cgi-bin/count/livecntr.pl?u+0+ff+http://www.BodyJewelleryShop.co.uk/index.html";


/* Leigh here is where you can ammend the timing of the banners
   to rotate. This script is set to rotate every 30 seconds.
   (5000=5 seconds, so 30000 would equal 30, etc)
   You should change the number in the setTimeout()
   call below for the number of seconds you wish. */
function rotateIt(){
 if (halt!=1){
  sctr++;
  if (sctr>number_of_sponsors-1){
   sctr=0;
   }
  document.sponsor.src=isn[sctr].src;
  setTimeout("rotateIt()",15000);
  }
 }

function doIt(){
 halt=1;
 parent.location.href=durl[sctr];
 }

function dispIt(){
 window.status=durl[sctr];
 }
// End Hiding -->