//<!--
//*****************************************
// Blending Image Slide Show Script
//*****************************************

//specify interval between slide (in mili seconds)
var slidespeed=2250

//specify images
var slideimages=new Array("images/scroll/01.jpg","images/scroll/02.jpg","images/scroll/03.jpg","images/scroll/04.jpg","images/scroll/05.jpg","images/scroll/06.jpg","images/scroll/07.jpg","images/scroll/08.jpg","images/scroll/09.jpg")

//specify corresponding links
var slidelinks=new Array("http://www.cdnsafety.com/firedex.htm","http://www.cdnsafety.com/fire-axe.htm","http://www.cdnsafety.com/american-trade-mark.htm","http://www.cdnsafety.com/","http://www.cdnsafety.com/firemans-shield_dragon-fire.htm","http://www.cdnsafety.com/niedner.htm","http://www.cdnsafety.com/counter-fire.htm","http://www.cdnsafety.com/pelican.htm","http://www.cdnsafety.com/shutgun.htm")

var newwindow=0 //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]
}
//--> end hide JavaScript

