//******* Top ten part 1**********

//  (in milliseconds)
var SlideShowSpeed = 3000;
//  (in seconds)
var CrossFadeDuration = 5;
var Picture = new Array(); 
var Caption = new Array(); 
Picture[1]  = 'sex_toys_topten/PENGUINtronic-s.jpg';
Picture[2]  = 'sex_toys_topten/aroselgel-s.jpg';
Picture[3]  = 'sex_toys_topten/ladyfinger-gold-s.jpg';
Picture[4]  = 'sex_toys_topten/fluffycuffs-s.jpg';
Picture[5]  = 'sex_toys_topten/pearlboy-s.jpg';
Picture[6]  = 'sex_toys_topten/atlantic-gspot-vibe-s.jpg';
Picture[7]  = 'sex_toys_topten/dolphin-s.jpg';
Picture[8]  = 'sex_toys_topten/xfactor-s.jpg';
Picture[9]  = 'sex_toys_topten/microtingler-teardrop-s.jpg';
Picture[10]  = 'sex_toys_topten/mini-beaver-s.jpg';
Caption[1]  = "Our Top 10";
Caption[2]  = "Best Sellers";
Caption[3]  = "Hand Selected";
Caption[4]  = "Quality Range";
Caption[5]  = "Life size pics";
Caption[6]  = "Click here";
Caption[7]  = "Gift Ideas";
Caption[8]  = "4 Him";
Caption[9]  = "4 Her";
Caption[10]  = "Save Money";


// Do not edit anything below this line!
// =====================================
var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;
var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Array();
preLoad[iss].src = Picture[iss];}
function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=4)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}

//END top ten part 1 
