   function makeContent(c){
      this.copy = c;
      this.write = writeContent;
   }
   
   function writeContent(){
      var str = '';
      str += '<p>' + this.copy + '<br /></p>';
      return str;
   }
   
   var contentArray = new Array();

   contentArray[0] = new makeContent(
	  "<img src='/cms/groups/public/documents/images/zz-radicati-logo.gif' alt='Radicati' border='0' /><br /><br />Autonomy ranked \"Top Player\" in the Hosted EMAIL archiving - Market Quadrant 2009,<br /><br />The Radicati Group, Nov 16, 2009"
      ).write();   
   contentArray[1] = new makeContent(
	  "<img src='/cms/groups/public/documents/images/zz-edrm-logo.jpg' alt='EDRM' border='0' /><br /><br />Autonomy is a founding member of the EDRM, serves on the Advisory Board, and contributes to Evergreen, IMRM, Metrics and Search working groups."
      ).write();
   contentArray[2] = new makeContent(
	  "<img src='/cms/groups/public/documents/images/zz-sedona-logo.jpg' alt='Sedona' border='0' /><br /><br />Autonomy is a proud sponsor of the Working Group Series and a contributing member of the RFP+ Vendor Panel."
      ).write();
   contentArray[3] = new makeContent(
	  "<div align='center'><img src='/cms/groups/public/documents/images/zz-img-financial-i-award.jpg' alt='Financial-i: Most Innovative Email & IM Compliance Solution Provider' border='0' /></div>"
      ).write(); 
   contentArray[4] = new makeContent(
	  "<img src='/cms/groups/public/documents/images/zz-socha-gelbman-logo.jpg' alt='Socha Gelbman' border='0' />"
      ).write();    
   
   var contIndex = 0;
   var contTimerID = null;
   
   function rotateContent(){
      var contLen = contentArray.length;
      if(contIndex >= contLen)
         contIndex = 0;
      document.getElementById('content').innerHTML = 
         contentArray[contIndex];
      contIndex++;
      contTimerID = setTimeout('rotateContent()',9000);
   }
   
   function pauseContent() {
      if (contTimerID != null) {
         clearTimeout(contTimerID);
         contTimerID = null;
      }
   }
   
   function playContent() {
      if (contTimerID == null) {
         contTimerID = setTimeout('rotateContent()', 2000);
      }
   }
