// 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/rhg.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/exemplas.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/accountants.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/fsb.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/goldsmith.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/hcc.gif","/herts/businessawards/hertfordshire/images/newlogosforhome/hertschamber.gif")
//specify corresponding links
var slidelinks=new Array("/herts/businessawards/hertfordshire/sponsors/rhg.aspx","/herts/businessawards/hertfordshire/sponsors/exemplas.aspx","/herts/businessawards/hertfordshire/sponsors/accountants.aspx","/herts/businessawards/hertfordshire/sponsors/fsb.aspx","/herts/businessawards/hertfordshire/sponsors/nhc.aspx","/herts/businessawards/hertfordshire/sponsors/hccouncil.aspx","/herts/businessawards/hertfordshire/sponsors/hcc.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]
}

//-->