var text = new Array("<em><p>&quot;Artillery Tools makes one of the best demolition tools on the market. My employees have been using the Artillery&reg; Pry Bar System since Oct. 2009, and they are impressed. It saves time, is easy to use, and creates less stress on my workers...<a href=\"upperv.php?article=testimonials#geraldtoppen\"><span style=\"color:#FFF\">More</span></a>&quot;</p><p>&nbsp;&nbsp;&nbsp;Gerald Toppen, Owner<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ServiceMASTER<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Vancouver, WA</p></em>",
"<em><p>&quot;After purchasing the Artillery&reg; Pry Bar System at the home show, our guys in the field reported their demolition time cut in half. The unique balance of the tool is the secret, because the tool uses its own weight to do the work. We give it to our best guys...<a href=\"upperv.php?article=testimonials#jackharris\"><span style=\"color:#FFF\">More</span></a>&quot;</p><p>&nbsp;&nbsp;&nbsp;Jack Harris, Owner<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;GoodeGuy Construction</p></em>",
"<em><p>&quot;We really appreciate the Artillery&reg; Pry Bar System. We use it on most jobs, especially the ones that require the removal of flooring and subfloors. It aslo works really well when we have to tear out sheet rock and plaster...<a href=\"upperv.php?article=testimonials#jimmygreen\"><span style=\"color:#FFF\">More</span></a>&quot;</p><p>&nbsp;&nbsp;&nbsp;Jimmy Green, Owner<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ServiceMASTER<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Bel Air, MD</p></em>");

var i = 0;
var amount = text.length;

function fadeout()
{
 $("#testimonials").fadeOut("slow",cycletext);
}

function cycletext()
{
  if (i == amount) 
  {
    i = 0;
  }
  document.getElementById('testimonials').innerHTML = text[i];
  fadein();
  i++;
}

function fadein()
{
  $("#testimonials").fadeIn("slow");
}

window.setInterval("fadeout()",10000);