var Pic = new Array();
Pic[0] = 'quotes/quote1.gif';
Pic[1] = 'quotes/quote2.gif';
Pic[2] = 'quotes/quote3.gif';
Pic[3] = 'quotes/quote4.gif';
Pic[4] = 'quotes/quote5.gif';
Pic[5] = 'quotes/quote6.gif';
Pic[6] = 'quotes/quote7.gif';
Pic[7] = 'quotes/quote8.gif';
Pic[8] = 'quotes/quote9.gif';
Pic[9] = 'quotes/quote10.gif';

var slideShowSpeed = 5500;
var j = 0;
var p = Pic.length;

var preLoad = new Array();
for (i = 0; i < p; i++) {
  preLoad[i] = new Image();
  preLoad[i].src = Pic[i];
}

window.onload = nextSlide;
function nextSlide() {
  document.images.SlideShow.src = preLoad[j].src;
  j = j + 1;
  if (j > (p-1)) j = 0;
  setTimeout('nextSlide()', slideShowSpeed);
}
