// JavaScript Document
 var customerImgs = [];
  var customerNames = [];

  customerImgs[0] = 'hsbc-1285673862.gif';
  customerNames[0] = 'HSBC';
  customerImgs[1] = 'nokia-1285682147.gif';
  customerNames[1] = 'Nokia';
  customerImgs[2] = 'baa-1290590247.gif';
  customerNames[2] = 'BAA';
  customerImgs[3] = 'ibm-1290590260.gif';
  customerNames[3] = 'IBM';
  customerImgs[4] = 'lastminute.com-1290590286.gif';
  customerNames[4] = 'lastminute.com';
  customerImgs[5] = 'nike-1290590295.gif';
  customerNames[5] = 'Nike';
  customerImgs[6] = 'pepsi-1290590306.gif';
  customerNames[6] = 'Pepsi';
  customerImgs[7] = 'sara-lee-1290590316.gif';
  customerNames[7] = 'Sara Lee';
  customerImgs[8] = 'vodafone-1290590337.gif';
  customerNames[8] = 'Vodafone';
  customerImgs[9] = 'westfield-1290591001.gif';
  customerNames[9] = 'Westfield';

  var i = 0;
  setInterval("rotateImages()", 5000);

  function rotateImages() {
    i = (i + 1) % customerImgs.length;
    document.getElementById("customers").src = "images/customers/" + customerImgs[i];
    document.getElementById("customers").title = customerNames[i];
  }
