/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/ */

var bannerImg = new Array();
  // Enter the names of the images below
  bannerImg[0]="images/testimonial16.gif";
  bannerImg[1]="images/testimonial15.gif";
  bannerImg[2]="images/testimonial14.gif";
  bannerImg[3]="images/testimonial17.gif";
  bannerImg[4]="images/testimonial18.gif";  
  bannerImg[5]="images/testimonial19.gif";
  bannerImg[6]="images/testimonial11.gif";
  bannerImg[7]="images/testimonial12.gif";
  bannerImg[8]="images/testimonial13.gif";
  bannerImg[9]="images/testimonial5.gif";
  bannerImg[10]="images/testimonial6.gif";
  bannerImg[11]="images/testimonial7.gif";  
  bannerImg[12]="images/testimonial8.gif";
  bannerImg[13]="images/testimonial9.gif";
  bannerImg[14]="images/testimonial10.gif";
  bannerImg[15]="images/testimonial1.gif";
  bannerImg[16]="images/testimonial2.gif";
  bannerImg[17]="images/testimonial3.gif";  
  bannerImg[18]="images/testimonial4.gif";

var newBanner = 0
var totalBan = bannerImg.length

function cycleBan() {
  newBanner++
  if (newBanner == totalBan) {
    newBanner = 0
  }
  document.banner.src=bannerImg[newBanner]
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleBan()", 10*1000)
}
window.onload=cycleBan;
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->