//*****************************************
// Blending Image Slide Show Script- 
// © Dynamic Drive (www.dynamicdrive.com)
// For full source code, visit http://www.dynamicdrive.com/
//*****************************************

//SC Code 043
//specify interval between slide (in mili seconds)
var slidespeed=3000;

//specify images
var slideimages=new Array(
"images/pictures_clothing_homepage/sp01.jpg",
"images/pictures_clothing_homepage/sp02.jpg",
"images/pictures_clothing_homepage/sp03.jpg",
"images/pictures_clothing_homepage/sp04.jpg",
"images/pictures_clothing_homepage/sp05.jpg",
"images/pictures_clothing_homepage/sp06.jpg",
"images/pictures_clothing_homepage/sp07.jpg",
"images/pictures_clothing_homepage/sp08.jpg",
"images/pictures_clothing_homepage/sp09.jpg"
);

//specify corresponding links
var slidelinks=new Array(
"http://www.pepatino.be/catalog/product_info.php?manufacturers_id=26&products_id=1614",
"http://www.pepatino.be/catalog/product_info.php?manufacturers_id=26&products_id=1601",
"http://www.pepatino.be/catalog/product_info.php?manufacturers_id=26&products_id=1621",
"http://www.pepatino.be/catalog/product_info.php?manufacturers_id=26&products_id=1617",
"http://www.pepatino.be/catalog/product_info.php?manufacturers_id=26&products_id=1619",
"http://www.pepatino.be/catalog/product_info.php?manufacturers_id=26&products_id=1602",
"http://www.pepatino.be/catalog/product_info.php?manufacturers_id=26&products_id=1604",
"http://www.pepatino.be/catalog/product_info.php?manufacturers_id=26&products_id=1599",
"#"
);

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