<!--
var quote=new Array();
	quote[0] = '<p class="rotating_text" align="left">&quot;The staff that was in and around our home during various stages of the process   was professional and pointed to the name of your company &quot;Trusted&quot; at all times.&quot;</p><p class="rotating_text" align="left"><a href="ac/testimonies.php">Read More--</a></p>';
	quote[1] = '<p class="rotating_text" align="left">&quot;You distinguished yourselves as different from many other mechanical firms and that positive difference has been displayed time and time again.&quot;</p><p class="rotating_text" align="left"><a href="ac/testimonies.php">Read More--</a></p>';
	quote[2] = '<p class="rotating_text" align="left">&quot;Rest assured we will recommend Trusted Heating and Cooling to any one of our friends who are in need of a new A/C or service on existing equipment.&quot;</p><p class="rotating_text" align="left"><a href="ac/testimonies.php">Read More--</a></p>';
	quote[3] = '<p class="rotating_text" align="left">&quot;Formerly being in the [air conditioning] business in Chicago, and now as a customer, I was very impressed.&quot;</p><p class="rotating_text" align="left"><a href="ac/testimonies.php">Read More--</a></p>';
	quote[4] = '<p class="rotating_text" align="left">&quot;My home was cleaner when they left than it was when they arrived.&quot;</p><p class="rotating_text" align="left"><a href="ac/testimonies.php">Read More--</a></p>';
	quote[5] = '<p class="rotating_text" align="left">&quot;Your installers were very prompt, courteous and neat, they seemed to know exactly what to do and how to do it.&quot;</p><p class="rotating_text" align="left"><a href="ac/testimonies.php">Read More--</a></p>';
	quote[6] = '<p  class="rotating_text" align="left">&quot;We believe that your family business can do nothing but flourish if you treat every customer as you treated us.&quot;</p><p class="rotating_text" align="left"><a href="ac/testimonies.php">Read More--</a></p>';
var q=Math.floor(Math.random()*6), speed=12000;

function showQuote() {
     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);

//-->