
<!--

//*****************************************
// 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=2200

//specify images
var slideimages=new Array("images/r-qu.gif", "images/r-fl1.gif", "images/r-bc1.gif", "images/r-cp1.gif", "images/r-bcr.gif", "images/r-eg1.gif", "images/r-fd1.gif", "images/r-081.gif", "images/r-lr1.gif", "images/r-ma1.gif", "images/r-mr1.gif", "images/r-pd1.gif", "images/r-pm1.gif", "images/r-sk1.gif", "images/r-st1_7.gif", "images/r-vt1.gif", "images/nwest.gif", "images/r-qu.gif")

//specify corresponding links
var slidelinks=new Array("index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1", "index.php?main_page=index&cPath=1")

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]
}

//-->