//<![CDATA[
var quote=new Array();
    /* add as many quotes as you like!*/
  quote[0]='Did you get left out of the will?';
  quote[1]='Do you need to protect your family&#39;s estate?';
  quote[2]='Are your parents being taken advantage of?';
  quote[3]='Do you want to protect your inheritance?';
  quote[4]='Is there someone eating away at your parents savings?';
  quote[5]='<a href="/probate/contact-us/">Call Michael Colton Now! 248.324.0800</a>';
var speed=5000;    /*this is the time in milliseconds adjust to suit*/
var q=0;

function showQuote() {

document.getElementById("page-feature-front").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);   
//]]>
