<!--
function makeNews(i,c,p,img){
	  this.ind = i;
      this.copy = c;
      this.person = p;
      this.img = img;
      this.write = writeNews;
   }

   function writeNews(){
		var str = '';
		if (this.img.src != "") {
			str += '<img src="' + this.img.src + '" alt="' + this.person + '">';
		}
		str += '<p>&ldquo;' + this.copy + '&rdquo;</p>'; 
		str += '<div id="person">&nbsp; &nbsp; &mdash;' + this.person + '</div><br />'; 
		return str;
   }
   
   var nIndex = 0;
   var timerID = null;
   
   function rotateNews(i,speed){
	   nIndex = i;
      var len = newsArray.length;
      if(nIndex >= len)
         nIndex = 0;
      	document.getElementById('testimonials').innerHTML = 
         newsArray[nIndex];
      nIndex++;
      timerID = setTimeout('rotateNews(' + nIndex + ','+ speed +')',speed);
   }   
-->