<!-- Hide from JavaScript-Impaired Browsers
/* Leigh here is where you increase or decrease the
   the number of sponsors banners in the rotation - sponsors=11 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=11;

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.qksrv.net/image-616451-8319531";
isn[1].src="http://images.uk.paidonresults.net/2482/234/0/1";
isn[2].src="/images/banners/FF_foot.gif";
isn[3].src="http://www.fantasyfactory.co.uk/images/banners/FF_happy.gif";
isn[4].src="http://images.uk.paidonresults.net/2482/91/0/91";
isn[5].src="http://www.fantasyfactory.co.uk/images/banners/FF_crystal.gif";
isn[6].src="http://images.uk.paidonresults.net/2482/11/0/104";
isn[7].src="http://www.fantasyfactory.co.uk/images/banners/FF_multi_blue.gif";
isn[8].src="/images/banners/ff_soccer_as.gif";
isn[9].src="http://images.uk.paidonresults.net/2482/11/0/103";
isn[10].src="http://www.qksrv.net/image-616451-5042808";

/* 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.qksrv.net/click-616451-8319531";
durl[1]="http://www.paidonresults.net/c/2482/1/234/0";
durl[2]="http://www.fantasyfactory.co.uk/sport/default.asp?SPORT_ID=3";
durl[3]="http://www.fantasyfactory.co.uk";
durl[4]="http://www.paidonresults.net/c/2482/91/91/0";
durl[5]="http://www.fantasyfactory.co.uk";
durl[6]="http://www.paidonresults.net/c/2482/104/11/0";
durl[7]="http://www.fantasyfactory.co.uk";
durl[8]="http://www.fantasyfactory.co.uk/sport/default.asp?SPORT_ID=3";
durl[9]="http://www.paidonresults.net/c/2482/103/11/0";
durl[10]="http://www.qksrv.net/click-616451-5042808";

/* 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(){
// parent.window.status=durl[sctr];
 window.status=durl[sctr];
 }
// End Hiding -->