NewImg = new Array (
"../sshow/the_pajamacompany_image1.jpg",
"../sshow/the_pajamacompany_image2.jpg",
"../sshow/the_pajamacompany_image3.jpg",
"../sshow/the_pajamacompany_image4.jpg",
"../sshow/the_pajamacompany_image5.jpg",
"../sshow/the_pajamacompany_image6.jpg",
"../sshow/the_pajamacompany_image7.jpg",
"../sshow/the_pajamacompany_image8.jpg",
"../sshow/the_pajamacompany_image9.jpg",
"../sshow/the_pajamacompany_image10.jpg",
"../sshow/the_pajamacompany_image11.jpg",
"../sshow/the_pajamacompany_image12.jpg",
"../sshow/the_pajamacompany_image13.jpg",
"../sshow/the_pajamacompany_image14.jpg",
"../sshow/the_pajamacompany_image15.jpg",
"../sshow/the_pajamacompany_image16.jpg",
"../sshow/the_pajamacompany_image17.jpg",
"../sshow/the_pajamacompany_image18.jpg",
"../sshow/the_pajamacompany_image19.jpg",
"../sshow/the_pajamacompany_image20.jpg",
"../sshow/the_pajamacompany_image21.jpg",
"../sshow/the_pajamacompany_image22.jpg",
"../sshow/the_pajamacompany_image23.jpg",
"../sshow/the_pajamacompany_image24.jpg",
"../sshow/the_pajamacompany_image25.jpg",
"../sshow/the_pajamacompany_image26.jpg",
"../sshow/the_pajamacompany_image27.jpg",
"../sshow/the_pajamacompany_image28.jpg",
"../sshow/the_pajamacompany_image29.jpg",
"../sshow/the_pajamacompany_image30.jpg",
"../sshow/the_pajamacompany_image31.jpg",
"../sshow/the_pajamacompany_image32.jpg",
"../sshow/the_pajamacompany_image33.jpg",
"../sshow/the_pajamacompany_image34.jpg",
"../sshow/the_pajamacompany_image35.jpg",
"../sshow/the_pajamacompany_image36.jpg",
"../sshow/the_pajamacompany_image37.jpg",
"../sshow/the_pajamacompany_image38.jpg"
);
var ImgNum = 0;
var ImgLength = NewImg.length - 1;

//Time delay between Slides in milliseconds
var delay = 3000;

function chgImg() {
RndIdx = Math.round(Math.random() * ImgLength);
RndIdx2 = Math.round(Math.random() * ImgLength);
while (RndIdx == RndIdx2) {
RndIdx2 = Math.round(Math.random() * ImgLength);
}
document.slideshow.src = NewImg[RndIdx];
document.slideshow2.src = NewImg[RndIdx2];
setTimeout("chgImg()", delay);
}
