//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("images/EEpic2.jpg","images/EEpic3.jpg","images/EEpic4.jpg","images/EEpic5.jpg","images/EEpic6.jpg","images/EEpic7.jpg","images/EEpic8.jpg","images/EEpic9.jpg")
//specify corresponding links
var slidelinks=new Array("http://168.144.195.116/EEproductions/images/EEpic2.jpg","http://168.144.195.116/EEproductions/images/EEpic3.jpg","http://168.144.195.116/EEproductions/images/EEpic4.jpg","http://168.144.195.116/EEproductions/images/EEpic5.jpg","http://168.144.195.116/EEproductions/images/EEpic6.jpg" ,"http://168.144.195.116/EEproductions/images/EEpic7.jpg","http://168.144.195.116/EEproductions/images/EEpic8.jpg","http://168.144.195.116/EEproductions/images/EEpic9.jpg")

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(){
OpenIt = window.open(slidelinks[whichlink])
}