var text = new Array("<em><p style=&quot;margin-left: 20px; margin-right: 30px; font-weight: bold&quot;>&quot;When Gary\'s Vacuflo was first offered the opportunity to participate in JUMP-START Portland&#8482;, I was hesitant. It just sounded too good to be true. Once I realized that it was all it was advertised to be, I immediately &quot;jumped&quot; on board (Pun Intended).  How can anyone say no to a virtually free, &quot;Top of Mind&quot; marketing opportunity that puts your promotions in front of a large number of Realtors&reg;, especially in a down market?&quot;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gary Philips, Owner<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gary\'s Vacuflo (Portland, OR)</p></em>","<em><p style=&quot;margin-left: 20px; margin-right: 30px; font-weight: bold&quot;>&quot;This was pretty much the classic &quot;no brainer&quot; from my perspective. Portland Web Marketing made the process easy and seamless. JUMP-START Portland&#8482; gets our name in front of a large group of Realtors&reg; who will be motivated to refer their clients to us because of the discount we offer. In my view JUMP-START Portland&#8482; translates to &quot;100% upside&quot; for Lakeside Lumber.&quot;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Luke Morley, Marketing Director<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Lakeside Lumber (Tualatin, OR)</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);
