   function makeCustomers(c){
      this.copy = c;
      this.write = writeCustomers;
   }
   
   function writeCustomers(){
      var str = '';
      str += '<p>' + this.copy + '<br /></p>';
      return str;
   }
   
   var customerArray = new Array();
   
   customerArray[0] = new makeCustomers(
	  "A leading commercial bank has hosted over 30 cases with Autonomy ZANTAZ this year. Approximately 17 million pages of TIFF images and 1 Terabyte of electronic data has been loaded, and Autonomy ZANTAZ has produced over 400,000 native documents and 2.9 million pages of TIFF productions for the client."
      ).write();
   customerArray[1] = new makeCustomers(
	  "A banking joint defense group currently has over 150 million pages hosted in the outsourced systems. There are over 20 parties that use the systems regularly to securely access the data related to these matters, and, Autonomy ZANTAZ guarantees 15 minute response time to the customer's requests and inquiries."
      ).write();
   customerArray[2] = new makeCustomers(
	  "A top 5 US retailer currently has over 4800 legal matters loaded in to Introspect Review and Production."
      ).write();
   customerArray[3] = new makeCustomers(
	  "A major shipping company has deployed Aungate Investigator to cull and identify a data set down by over 95%, dramatically reducing their review set from 60 gigabytes to slightly over 1,000 documents."
      ).write(); 
   
   
   var custIndex = 0;
   var custTimerID = null;
   
   function rotateCustomers(){
      var custLen = customerArray.length;
      if(custIndex >= custLen)
         custIndex = 0;
      document.getElementById('customer').innerHTML = 
         customerArray[custIndex];
      custIndex++;
      custTimerID = setTimeout('rotateCustomers()',9000);
   }
   
   function pauseCustomers() {
      if (custTimerID != null) {
         clearTimeout(custTimerID);
         custTimerID = null;
      }
   }
   
   function playCustomers() {
      if (custTimerID == null) {
         custTimerID = setTimeout('rotateCustomers()', 2000);
      }
   }
