<!--

//*****************************************
// Blending Image Slide Show Script- 
// © Dynamic Drive (www.dynamicdrive.com)
// For full source code, visit http://www.dynamicdrive.com/
//*****************************************

//specify interval between slide (in mili seconds)
var slidespeed=3000

//specify images
var slideimages=new Array("http://content.onlineagency.com/sites/38272/images/homePhoto_1.jpg","http://content.onlineagency.com/sites/38272/images/homePhoto_2.jpg","http://content.onlineagency.com/sites/38272/images/homePhoto_3.jpg","http://content.onlineagency.com/sites/38272/images/homePhoto_4.jpg",
"http://content.onlineagency.com/sites/38272/images/homePhoto_5.jpg",
"http://content.onlineagency.com/sites/38272/images/homePhoto_6.jpg",
"http://content.onlineagency.com/sites/38272/images/homePhoto_7.jpg",
"http://content.onlineagency.com/sites/38272/images/homePhoto_8.jpg",
"http://content.onlineagency.com/sites/38272/images/homePhoto_9.jpg",
"http://content.onlineagency.com/sites/38272/images/homePhoto_10.jpg")



//specify corresponding links
//var slidelinks=new Array("http://www.dynamicdrive.com","http://javascriptkit.com","http://www.geocities.com")

//var newwindow=1 //open links in new window? 1=yes, 0=no

var imageholder=new Array()
var ie=document.all
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
if (newwindow)
window.open(slidelinks[whichlink])
else
window.location=slidelinks[whichlink]
}

//-->

