// JavaScript Document.js file:

var bannerImg = new Array();
  // Enter the names of the images below
  bannerImg[0]="images/Rotation on index page/Technolgy_with_Legend.jpg";
  bannerImg[1]="images/Rotation on index page/who_we_are.jpg";
  bannerImg[2]="images/Rotation on index page/Project_Management.jpg";
  bannerImg[3]="images/Rotation on index page/Busines_Consulting.jpg";
  bannerImg[4]="images/Rotation on index page/Staffing_Solutions.jpg";
  bannerImg[5]="images/Rotation on index page/Industry_diversity.jpg";
  

var newBanner = 0;
var totalBan = bannerImg.length;

function cycleBan() {
  newBanner++;
  if (newBanner == totalBan) {
    newBanner = 0;
  }
  document.rotator_2.src=bannerImg[newBanner];
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleBan()", 4*1000);
}
window.onload=cycleBan;




