   function makeNews(c,l,f){
      this.copy = c;
      this.link = l;
      this.follow = f;
      this.write = writeNews;
   }

   function writeNews(){
      var str = '';
      //str += '<a href="' + this.link + '">';
      str += this.copy + '<br />';
      //str +=  '<a href="' + this.link + '">' + 
         //this.follow + '</a>';
      return str;
   }

   var newsArray = new Array();
   newsArray[0] = new makeNews(
      "&quot;TriStar did a great job finding true prospects for our business and really helped us in targeting potential clients. &nbsp; We have increased our closing rate by 25% due to TriStar's efforts. &nbsp; We consider them our business partner.&quot;",
       //'testimonials.html',
       '').write();
	   
   newsArray[1] = new makeNews(
      "&quot;TriStar Marketing Group has increased our visibility in the market place and has gotten us into doors that we were never able to get into before. &nbsp; We have had to increase our staff to handle all of the extra leads and business <strong>TriStar</strong> has generated.&quot;",
       //'testimonials.html',
       '').write();
	   
   newsArray[2] = new makeNews(
      "&quot;Partnering for business is a phrase that is often thrown around, but rarely achieved.<br />Cathy Preston and <strong>TriStar Marketing Group</strong> is an organization that actually outperforms what they promise!&quot;",
       //'testimonials.html',
       '').write();
	   
   newsArray[3] = new makeNews(
      "&quot;The work that Cathy Preston and <strong>TriStar Marketing Group</strong> has done for our firm has been outstanding. &nbsp; They uncover &quot;right now&quot; opportunities and provide us with detailed feedback so we can properly assess the long-term value of each lead. &nbsp; ...it's great to have a Business Development partner that actually manages itself &amp; produces revenue!&quot;",
       //'testimonials.html',
       '').write();
	   
   newsArray[4] = new makeNews(
      "&quot;TriStar gets it!  They worked with us to define our key markets and then generated a New Business Development strategy to ensure the results we needed. &nbsp; <strong>TriStar</strong> is in constant communication with our sales staff to ensure that balls do not get dropped and that we are<br />in play at the right time with the right prospects.&quot;",
       //'testimonials.html',
       '').write();
	   
   newsArray[5] = new makeNews(
      "&quot;TriStar Marketing did a great job for us. &nbsp; Without knowing our industry at all, Cathy and her team were able to turn around a very effective script and campaign in a very short amount<br />of time. &nbsp; I would not hesitate to recommend Cathy and her team.&quot;",
       //'testimonials.html',
       '').write();
   
   var nIndex = 0;
   var timerID = null;
   
   function rotateNews(){
      var len = newsArray.length;
      if(nIndex >= len)
         nIndex = 0;
      document.getElementById('homeTestimonialsText').innerHTML = 
         newsArray[nIndex];
      nIndex++;
      timerID = setTimeout('rotateNews()',10000);
   }

   function pauseNews() {
      if (timerID != null) {
         clearTimeout(timerID);
         timerID = null;
      }
   }
   
   function playNews() {
      if (timerID == null) {
         timerID = setTimeout('rotateNews()', 1000);
      }
   }
