// JavaScript Document
<!--

//Pixelating Image slideshow
//Copyright Dynamic Drive 2001
//Visit http://www.dynamicdrive.com for this script

//specify interval between slide (in mili seconds)
var slidespeed=3000
//specify images
var slideimages=new Array("/herts/businessawards/fenland/images/logosforhome/Fenlanddc.gif","/herts/businessawards/fenland/images/logosforhome/localgen.gif","/herts/businessawards/fenland/images/logosforhome/whiting.gif","/herts/businessawards/fenland/images/logosforhome/larkfleethomes.gif","/herts/businessawards/fenland/images/logosforhome/natwest.gif")
//specify corresponding links
var slidelinks=new Array("/herts/businessawards/fenland/sponsors/fendistrictcouncil.aspx","/herts/businessawards/fenland/sponsors/localgeneration.aspx","/herts/businessawards/fenland/sponsors/whiting.aspx","/herts/businessawards/fenland/sponsors/larkfleet.aspx","/herts/businessawards/fenland/sponsors/natwest.aspx")

var imageholder=new Array()
var ie55=window.createPopup
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
window.location=slidelinks[whichlink]
}

//-->
