ts = new Array();

ts[0] = 'We\'ve used Mirsky Electric on both of our home remodels and were impressed with the level of service, professionalism and quality of work.<small>- Joci B.<br /> Mercer Island, WA</small>';
ts[1] = 'We couldn\'t be happier with them and the quality of their work. We plan on using them every single time we require the help of an electrician. <small>- Sandra L.<br /> Seattle, WA</small>';
ts[2] = 'The employees who have been to my home have been cheerful, pleasant, clean, communicative and have clearly known what they were doing. <small>- Tracy Sigmon<br /> Mercer Island, WA</small>';
ts[3] = 'Mirsky Electric is an outstanding company to have in our network.  They provide the highest level of customer service and quality workmanship to our clients. <small>- Jill Hanken<br /> HomeWorks Northwest</small>';
ts[4] = 'It\'s so refreshing and comforting to do business with your company and we have recommended your services to many of our friends. <small>- Margaret McIntyre<br /> Seattle, WA</small>';
ts[5] = 'Thank you for your good service.  Our downstairs is warm now!  <small>- The Smiths<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);
  }
});
