
<!--

//*****************************************
// 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("img/frglv.jpg", "img/frsblg.jpg", "img/friasb.jpg", "img/frkcap.jpg", "img/frsblg.jpg", "img/frwkst.jpg", "img/frsblg.jpg", "img/frbts.jpg")

//specify corresponding links
var slidelinks=new Array("index.php?main_page=product_info&cPath=9&products_id=123", "index.php?main_page=index", "index.php?main_page=product_info&cPath=1_12&products_id=2", "index.php?main_page=index", "index.php?main_page=product_info&cPath=7_22&products_id=111", "index.php?main_page=index", "index.php?main_page=product_info&cPath=4&products_id=83", "index.php?main_page=index&cPath=10", "index.php?main_page=product_info&cPath=10&products_id=125")

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]
}
function makevisible(cur,which){
strength=(which==0)? 1 : 0.2

if (cur.style.MozOpacity)
cur.style.MozOpacity=strength
else if (cur.filters)
cur.filters.alpha.opacity=strength*100
}
//-->