//<![CDATA[
var quote=new Array();
  quote[0]='It is great working with a firm that walks their talk. They have done a superb job of consulting with me on the types of benefits available."';  
  quote[1]='Meeker-Magner distinguishes itself from other companies by offering outstanding consultative services which compliment the brokerage services."';
  quote[2]='Meeker-Magner Company has been our insurance specialist for over 20 years. Our employees are very comfortable participating in our open enrollment meetings.  By following a customized plan we have been able to keep our rate increases below the national average."';
  quote[3]='After participating in our first health screening I was approached by several employees personally thanking me for helping them and their spouses. Several had found that they had either emerging medical conditions or serious medical conditions that needed immediate attention.  After reviewing the results Meeker-Magner Company helped us tailor a Wellness Program to fit our employees needs.  The program not only encouraged participation but also improved the overall well being of our employees and their families." ';

var speed=11000;    /*this is the time in milliseconds adjust to suit*/
var q=0;

function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);
   
 //]]>
