<!--

//*****************************************
// 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("shirts/1.png","shirts/2.png","shirts/3.png","shirts/4.png","shirts/5.png","shirts/6.png","shirts/7.png","shirts/8.png","shirts/9.png","shirts/10.png","shirts/11.png","shirts/12.png","shirts/13.png","shirts/14.png","shirts/15.png","shirts/16.png","shirts/17.png","shirts/18.png")

//specify corresponding links
var slidelinks=new Array("http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.com" ,"http://www.asianteez.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]
}

//-->
