﻿var fade_speed = 3000; //speed
var fade_duration = 10;
var image = new Array();

image[0] = 'images/products_titImg.jpg'; //image name
image[1] = 'images/products_titImg.jpg';
image[2] = 'images/products_titImg2.jpg';
image[3] = 'images/products_titImg2.jpg';
image[4] = 'images/products_titImg2.jpg';

var t;
var j = 0;
var p = image.length;
var pre_load = new Array();
for (i = 0; i < p; i++) {
  pre_load[i] = new Image();
  pre_load[i].src = image[i];
}
function start_fade() {
  if (document.all) {
    document.images.SlideShow.style.filter="blendTrans(duration=fade_duration)";
    document.images.SlideShow.filters.blendTrans.Apply();
  }
  document.images.SlideShow.src = pre_load[j].src;
  if (document.all) {
    document.images.SlideShow.filters.blendTrans.Play();
  }
  j = j + 1;
  if (j > (p - 1)) j = 0;
    t = setTimeout('start_fade()', fade_speed);
  }
