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


function setupFadeLinkslife() {
arrFadeLinkslife[0] = "http://www.msqins.com";
arrFadeTitleslife[0] = "<strong id=customer>Kat L.<br />Washington  ,DC<br />28 yr old non-smoker<br /></strong><strong id=savings style=color:#74cb05>12%</strong><br /><strong id=quote>&quot;Excellent service and follow up though the underwriting process&quot;</strong>";

arrFadeLinkslife[1] = "http://www.msqins.com";
arrFadeTitleslife[1] = "<strong id=customer>Katie P.<br />Washington  ,DC<br />45 yr old smoker<br /></strong><strong id=savings style=color:#74cb05>15%</strong><br /><strong id=quote>&quot;I appreciated the free health check up in addition to the new policy&quot;</strong>";

arrFadeLinkslife[2] = "http://www.msqins.com";
arrFadeTitleslife[2] = "<strong id=customer>Fisher S.<br />Washington  ,DC<br />34 yr old non-smoker<br /></strong><strong id=savings style=color:#74cb05>20%</strong><br /><strong id=quote>&quot;Just the right protection for my family at a great price&quot;</strong>";

arrFadeLinkslife[3] = "http://www.msqins.com";
arrFadeTitleslife[3] = "<strong id=customer>David W.<br />Washington  ,DC<br />31 yr old non-smoker<br /></strong><strong id=savings style=color:#74cb05>23%</strong><br /><strong id=quote>&quot;The perfect solution to my condo co-ownership situation&quot;</strong>";

arrFadeLinkslife[4] = "http://www.msqins.com";
arrFadeTitleslife[4] = "<strong id=customer>Nick L.<br />Gaithersburg ,MD<br />39 yr old non-smoker<br /></strong><strong id=savings style=color:#74cb05>31%</strong><br /><strong id=quote>&quot;I can sleep at night now knowing my family is secure no matter what&quot;</strong>";

arrFadeLinkslife[5] = "http://www.msqins.com";
arrFadeTitleslife[5] = "<strong id=customer>James A.<br />Annapolis ,MD<br />34 yr old non-smoker<br /></strong><strong id=savings style=color:#74cb05>21%</strong><br /><strong id=quote>&quot;I'm happy knowing our home will be paid off if anything happens to me&quot;</strong>";



}

// DO NOT EDIT BELOW THIS LINE!!!

var m_FadeOutlife = 255;
var m_FadeInlife=0;
var m_Fadelife = 0;
var m_FadeSteplife = 3;
var m_FadeWaitlife = 5000;
var m_bFadeOutlife = true;

var m_iFadeIntervallife;


var arrFadeLinkslife;
var arrFadeTitleslife;
var arrFadeCursorlife = 0;
var arrFadeMaxlife;

function Fadewllife() {
  m_iFadeIntervallife = setInterval(fade_ontimerlife, 10);
  arrFadeLinkslife = new Array();
  arrFadeTitleslife = new Array();
  setupFadeLinkslife();
  arrFadeMaxlife = arrFadeLinkslife.length-1;
  setFadeLinklife();
}

function setFadeLinklife() {
  var ilinklife = document.getElementById("fade_link_life");
  ilinklife.innerHTML = arrFadeTitleslife[arrFadeCursorlife];
  ilinklife.href = arrFadeLinkslife[arrFadeCursorlife];
}

function fade_ontimerlife() {
  if (m_bFadeOutlife) {
    m_Fadelife+=m_FadeSteplife;
    if (m_Fadelife>m_FadeOutlife) {
      arrFadeCursorlife++;
      if (arrFadeCursorlife>arrFadeMaxlife)
        arrFadeCursorlife=0;
      setFadeLinklife();
      m_bFadeOutlife = false;
    }
  } else {
    m_Fadelife-=m_FadeSteplife;
    if (m_Fadelife<m_FadeInlife) {
      clearInterval(m_iFadeIntervallife);
      setTimeout(Faderesumelife, m_FadeWaitlife);
      m_bFadeOutlife=true;
    }
  }
  var ilinklife = document.getElementById("fade_link_life");
  if ((m_Fadelife<m_FadeOutlife)&&(m_Fadelife>m_FadeInlife))
    ilinklife.style.color = "#" + ToHex(m_Fadelife);
}

function Faderesumelife() {
  m_iFadeIntervallife = setInterval(fade_ontimerlife, 10);
}

function ToHex(strValuelife) {
  try {
    var resultlife= (parseInt(strValuelife).toString(16));

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


