// 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/greenawards/hertfordshire/images/logosforhome/greenorg.gif","/herts/greenawards/hertfordshire/images/logosforhome/environmentalpopulation.gif","/herts/greenawards/hertfordshire/images/logosforhome/galleria.gif", "/herts/greenawards/hertfordshire/images/logosforhome/bre.gif",						  
"/herts/greenawards/hertfordshire/images/logosforhome/electrassure.gif",						  
"/herts/greenawards/hertfordshire/images/logosforhome/ecoliving.gif")
//specify corresponding links
var slidelinks=new Array("/herts/greenawards/hertfordshire/sponsors/greenorganisation.aspx","/herts/greenawards/hertfordshire/sponsors/environmentalpopulation.aspx","/herts/greenawards/hertfordshire/sponsors/galleria.aspx",
"/herts/greenawards/hertfordshire/sponsors/bre.aspx",						 
"/herts/greenawards/hertfordshire/sponsors/electrassure.aspx",						 
"/herts/greenawards/hertfordshire/sponsors/ecoliving.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]
}

//-->
