  var pos = null;

  function loadTests(){
     var obj = document.getElementById('test');

     pos = pos + 1;
     if(pos == 4) pos = 1;

     if(pos == 1){
        obj.innerHTML = "<p><i>\"These guys are good &amp; reasonably priced! I would recomend them to anyone who needs quick reliable support.\"<br />- Jaclyn C., Bayside</i></p>";
     }else if(pos == 2){
        obj.innerHTML = "<p><i>\"Thanks to them I was able to finish my report in time for class the following day. Thanks guys!\"<br />- Alessandra A., Brooklyn</i></p>";
     }else if(pos == 3){
        obj.innerHTML = "<p><i>\"Joseph assured me that if the problem couldn\'t be fixed that I wouldn\'t be charged. I wouldn\'t go to anyone else after the convience of their services.\"- Carl F. from Middle Village</i></p>";
     }
  }

  window.onload = function(){
     setInterval("loadTests()", 6000);
     pos = 1;
  }
