var n = 0;

timedelay = 3;  // 3 secs between pics
timedelay *= 1000;

windowprops = "top=250,left=15,width=30,height=30"; // customize the popup window here
var imgs = new Array();
//note only .jpg images allowed

imgs[0] = "./images/E176FPB.jpg";
imgs[1] = "./images/USB2.0%204-PortLaptopHub_18459.jpg";
imgs[2] = "./images/minimaxdeluxe737.jpg";
imgs[3] = "./images/shufflemp3-red.jpg";
imgs[4] = "./images/VelocityHigh-Speed_HDMICable_40315.jpg";
imgs[5] = "./images/FlexUSBUSBAMale-AFemaleAdapter_Black_30501.gif";


//var page = new Array();
//page[0] = "http://godammydirect.com/product_info.php?products_id=118";
//page[1] = "http://godammydirect.com/product_info.php?products_id=112";
//page[2] = "http://godammydirect.com/product_info.php?products_id=121";
//page[3] = "http://godammydirect.com/index.php?cPath=26";
//page[4] = "http://godammydirect.com/product_info.php?products_id=102";
//page[5] = "http://godammydirect.com/product_info.php?products_id=105";

function hook() {
  var p = (n == 0) ? page[page.length-1] : page[n-1];
  window.open(p,"",windowprops);

}

function rotate() {
  document.picform.slideshow.src = imgs[n];
  (n == (imgs.length - 1)) ? n = 0 : n++;
  window.setTimeout("rotate()", timedelay);
}
window.onload = rotate;

