
<!-- Marquee code for biz Section  -->


function setupFadeLinksbiz() {
arrFadeLinksbiz[0] = "http://www.msqins.com";
arrFadeTitlesbiz[0] = "<strong id=customer>Justin M.<br />Washington, DC<br />Landscape Contractor<br /></strong><strong id=savings style=color:#74cb05>52%</strong><br /><strong id=quote>&quot;Super fast turnaround on certificates&quot;</strong>";

arrFadeLinksbiz[1] = "http://www.msqins.com";
arrFadeTitlesbiz[1] = "<strong id=customer>Katherine U.<br />Washington, DC<br />11 unit Apartment Owner<br /></strong><strong id=savings style=color:#74cb05>32%</strong><br /><strong id=quote>&quot;More coverage then my previous policy at a lower price&quot;</strong>";

arrFadeLinksbiz[2] = "http://www.msqins.com";
arrFadeTitlesbiz[2] = "<strong id=customer>Steve B.<br />Washington, DC<br />Painting Contractor<br /></strong><strong id=savings style=color:#74cb05>41%</strong><br /><strong id=quote>&quot;The less I pay for the insurance, the greater my income&quot;</strong>";

arrFadeLinksbiz[3] = "http://www.msqins.com";
arrFadeTitlesbiz[3] = "<strong id=customer>David P.<br />Washington, DC<br />Restaurant Owner<br /></strong><strong id=savings style=color:#74cb05>37%</strong><br /><strong id=quote>&quot;Excellent service, great coverage and nice savings&quot;</strong>";

arrFadeLinksbiz[4] = "http://www.msqins.com";
arrFadeTitlesbiz[4] = "<strong id=customer>Henry S.<br />Rockville, MD<br />Law Office<br /></strong><strong id=savings style=color:#74cb05>24%</strong><br /><strong id=quote>&quot;Just the right size policy for out small firm&quot;</strong>";

arrFadeLinksbiz[5] = "http://www.msqins.com";
arrFadeTitlesbiz[5] = "<strong id=customer>David W.<br />Gaithersburg, MD<br />Consulting Company<br /></strong><strong id=savings style=color:#74cb05>46%</strong><br /><strong id=quote>&quot;Much appreciated advice on all our exposures&quot;</strong>";

arrFadeLinksbiz[6] = "http://www.msqins.com";
arrFadeTitlesbiz[6] = "<strong id=customer>Mark P.<br />Annapolis, MD<br />Office Building<br /></strong><strong id=savings style=color:#74cb05>31%</strong><br /><strong id=quote>&quot;The free loss control safety consultant was just the icing on the cake&quot;</strong>";

arrFadeLinksbiz[7] = "http://www.msqins.com";
arrFadeTitlesbiz[7] = "<strong id=customer>Henry C.<br />Kensington, MD<br />Carpentry Contractor<br /></strong><strong id=savings style=color:#74cb05>29%</strong><br /><strong id=quote>&quot;I appreciate the fast quotes and even faster certificates&quot;</strong>";

arrFadeLinksbiz[8] = "http://www.msqins.com";
arrFadeTitlesbiz[8] = "<strong id=customer>Kevin L.<br />Potomac, MD<br />Homebuilder<br /></strong><strong id=savings style=color:#74cb05>36%</strong><br /><strong id=quote>&quot;I am a lot more knowledgeable and professional with the advice I received&quot;</strong>";

arrFadeLinksbiz[9] = "http://www.msqins.com";
arrFadeTitlesbiz[9] = "<strong id=customer>Natalie D.<br />Bethesda, MD<br />Condominium Association<br /></strong><strong id=savings style=color:#74cb05>27%</strong><br /><strong id=quote>&quot;I appreciate all the service well beyond issuing the policy&quot;</strong>";

}

// DO NOT EDIT BELOW THIS LINE!!!

var m_FadeOutbiz = 255;
var m_FadeInbiz=0;
var m_Fadebiz = 0;
var m_FadeStepbiz = 3;
var m_FadeWaitbiz = 5000;
var m_bFadeOutbiz = true;

var m_iFadeIntervalbiz;

var arrFadeLinksbiz;
var arrFadeTitlesbiz;
var arrFadeCursorbiz = 0;
var arrFadeMaxbiz;

function Fadewlbiz() {
  m_iFadeIntervalbiz = setInterval(fade_ontimerbiz, 10);
  arrFadeLinksbiz = new Array();
  arrFadeTitlesbiz = new Array();
  setupFadeLinksbiz();
  arrFadeMaxbiz = arrFadeLinksbiz.length-1;
  setFadeLinkbiz();
}

function setFadeLinkbiz() {
  var ilinkbiz = document.getElementById("fade_link_biz");
  ilinkbiz.innerHTML = arrFadeTitlesbiz[arrFadeCursorbiz];
  ilinkbiz.href = arrFadeLinksbiz[arrFadeCursorbiz];
}

function fade_ontimerbiz() {
  if (m_bFadeOutbiz) {
    m_Fadebiz+=m_FadeStepbiz;
    if (m_Fadebiz>m_FadeOutbiz) {
      arrFadeCursorbiz++;
      if (arrFadeCursorbiz>arrFadeMaxbiz)
        arrFadeCursorbiz=0;
      setFadeLinkbiz();
      m_bFadeOutbiz = false;
    }
  } else {
    m_Fadebiz-=m_FadeStepbiz;
    if (m_Fadebiz<m_FadeInbiz) {
      clearInterval(m_iFadeIntervalbiz);
      setTimeout(Faderesumebiz, m_FadeWaitbiz);
      m_bFadeOutbiz=true;
    }
  }
  var ilinkbiz = document.getElementById("fade_link_biz");
  if ((m_Fadebiz<m_FadeOutbiz)&&(m_Fadebiz>m_FadeInbiz))
    ilinkbiz.style.color = "#" + ToHex(m_Fadebiz);
}

function Faderesumebiz() {
  m_iFadeIntervalbiz = setInterval(fade_ontimerbiz, 10);
}

function ToHex(strValuebiz) {
  try {
    var resultbiz= (parseInt(strValuebiz).toString(16));

    while (resultbiz.length !=2)
            resultbiz= ("0" +resultbiz);
    resultbiz = resultbiz + resultbiz + resultbiz;
    return resultbiz.toUpperCase();
  }
  catch(ebiz)
  {
  }
}



