var text = new Array(
"\"We've had many different shippers deliver parts to us in the past. We decided to give NWAPD a try, because none of the other shippers seemed to understand how to protect our parts during shipment. We've been using you guys for 6 months now and have NEVER had to make a damage claim.\"<br /><br />Customer 2 (Vancouver, WA)",
"\"Since you guys started servicing the Spokane area, I finally got parts delivered to me on a timely basis. My customers are now happier, because I can get their cars repaired and back to them more quickly.\"<br /><br />Customer 3 (Spokane, WA)",
"&nbsp;\"What I like best about NW Auto Parts is that you specialize in shipping auto parts. No matter how complicated the order, you guys get the order right and deliver my parts on time.\"<br /><br />Customer 4 (Portland, OR)");

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);