ts = new Array();

ts[0] = 'They fixed some problems created by a lesser electrical firm.  I only wish I would have gone with Mirsky from the start of my project.<small>- Jason Fligor<br /> Seattle, WA</small>';
ts[1] = 'Their electricians are professional, polite and courteous, and our staff and customers barely notice when they\'re there. <small>- Rebecca Kaplan<br /> Seattle, WA</small>';
ts[2] = 'There is not job too big or too small. We would definitely recommend Mirsky Electric for all your electrical needs.<small>- Theresa &amp; Dana Frank<br /> Seattle, WA</small>';


current = 0;

function switchTs() {
	current++;
	if (current > (ts.length-1)) { current = 0; }
	Effect.Fade('t1', {duration: 0.5, afterFinish: function() { $('t1').innerHTML = ts[current]; Effect.Appear('t1', {duration: 0.5});}});
	window.setTimeout('switchTs()',15000);
}

document.observe("dom:loaded", function() {
  if ($('t1')) {
	  $('t1').innerHTML = ts[0];
	  window.setTimeout('switchTs()',15000);
  }
});
