// 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/hertfordshire/images/newlogosforhome/bdo.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/barrow.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/biz4biz.gif", "/herts/businessawards/hertfordshire/images/newlogosforhome/exemplas.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/rhg.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/specialistcars.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/nhc.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/hsbc.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/roche.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/fsb.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/wbsl.gif")
//specify corresponding links
var slidelinks=new Array("/herts/businessawards/hertfordshire/sponsors/bdo.aspx","/herts/businessawards/hertfordshire/sponsors/bluearrow.aspx","/herts/businessawards/hertfordshire/sponsors/biz4biz.aspx","/herts/businessawards/hertfordshire/sponsors/exemplas.aspx","/herts/businessawards/hertfordshire/sponsors/rhg.aspx","/herts/businessawards/hertfordshire/sponsors/specialistcars.aspx","/herts/businessawards/hertfordshire/sponsors/nhc.aspx","/herts/businessawards/hertfordshire/sponsors/hsbc.aspx","/herts/businessawards/hertfordshire/sponsors/roche.aspx","/herts/businessawards/hertfordshire/sponsors/wbsl.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]
}

//-->
