
var slideImg = new Array();
  // Enter the names of the images below
  slideImg[0]="http://www.nextpharmaceuticals.com/images/photo1.jpg";
  slideImg[1]="http://www.nextpharmaceuticals.com/images/photo2.jpg";
  slideImg[2]="http://www.nextpharmaceuticals.com/images/photo3.jpg";
  slideImg[3]="http://www.nextpharmaceuticals.com/images/photo4.jpg";



var newSlide = 0;
var totalSde = slideImg.length;

function cycleSde() {
  newSlide++;
  if (newSlide == totalSde) {
    newSlide = 0;
  }
  document.slide.src=slideImg[newSlide];
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleSde()", 4*1000);
}
window.onload=cycleSde;