ts = new Array();

ts[0] = 'Thank you very much for working with me on this project. I appreciate your honesty and flexibility. I\'ll continue to call you for all my projects.<small>- Peter Blue Woodworks<br /> Shoreline, WA</small>';
ts[1] = 'Please thank the electricians who worked on keeping our appliances and lights working through the toughest part of our remodel! <small>- Jeff McCracken<br /> Seattle, WA</small>';
ts[2] = 'It\'s been very enjoyable working with an attentive, flexible and quality-minded sub-contractor. It helps having a crew that is so conscientious and thorough. <small>- Kevin O\'Leary<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);
  }
});
