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


function setupFadeLinkshome() {
arrFadeLinkshome[0] = "http://www.msqins.com";
arrFadeTitleshome[0] = "<strong id=customer>Kim D.<br />Washington, DC<br />5 Bedroom Row home<br /></strong><strong id=savings style=color:#74cb05>34%</strong><br /><strong id=quote>&quot;I can sleep and night knowing my home is well protected&quot;</strong>";

arrFadeLinkshome[1] = "http://www.msqins.com";
arrFadeTitleshome[1] = "<strong id=customer>Esther L.<br />Washington, DC<br />3 Bedroom Victorian<br /></strong><strong id=savings style=color:#74cb05>29%</strong><br /><strong id=quote>&quot;Who knew the best company would also be the least expensive for me&quot;</strong>";

arrFadeLinkshome[2] = "http://www.msqins.com";
arrFadeTitleshome[2] = "<strong id=customer>Brian W.<br />Washington, DC<br />2 Bedroom Loft<br /></strong><strong id=savings style=color:#74cb05>36%</strong><br /><strong id=quote>&quot;Excellent coverage at an unbelievable price&quot;</strong>";

arrFadeLinkshome[3] = "http://www.msqins.com";
arrFadeTitleshome[3] = "<strong id=customer>Kenneth D.<br />Washington, DC<br />Historic G-town Home<br /></strong><strong id=savings style=color:#74cb05>28%</strong><br /><strong id=quote>&quot;I'm kicking myself that I have been paying way too much all these years&quot;</strong>";

arrFadeLinkshome[4] = "http://www.msqins.com";
arrFadeTitleshome[4] = "<strong id=customer>Ryan G.<br />Rockville, MD<br />3 Bedroom Ranch<br /></strong><strong id=savings style=color:#74cb05>39%</strong><br /><strong id=quote>&quot;Thanks for explaining every detail of the policy to me!&quot;</strong>";

arrFadeLinkshome[5] = "http://www.msqins.com";
arrFadeTitleshome[5] = "<strong id=customer>Edward K. <br />Gaithersburg, MD<br />4 Bedroom Colonial<br /></strong><strong id=savings style=color:#74cb05>41%</strong><br /><strong id=quote>&quot;I love the Guaranteed Replacement Cost feature&quot;</strong>";

arrFadeLinkshome[6] = "http://www.msqins.com";
arrFadeTitleshome[6] = "<strong id=customer>John A.<br />Annapolis, MD<br />3 Bedroom Federal<br /></strong><strong id=savings style=color:#74cb05>23%</strong><br /><strong id=quote>&quot;With all the insurance savings, I'm going to pay off my mortgage faster&quot;</strong>";

arrFadeLinkshome[7] = "http://www.msqins.com";
arrFadeTitleshome[7] = "<strong id=customer>Ali E.<br />Kensington, MD<br />4 Bedroom Colonial<br /></strong><strong id=savings style=color:#74cb05>31%</strong><br /><strong id=quote>&quot;You can't beat the Auto & Home multi policy discounts&quot;</strong>";

arrFadeLinkshome[8] = "http://www.msqins.com";
arrFadeTitleshome[8] = "<strong id=customer>Jennifer R.<br />Potomac, MD<br />5 Bedroom Colonial<br /></strong><strong id=savings style=color:#74cb05>3%</strong><br /><strong id=quote>&quot;Much needed savings with a warm and friendly personal touch&quot;</strong>";

arrFadeLinkshome[9] = "http://www.msqins.com";
arrFadeTitleshome[9] = "<strong id=customer>Kelly S.<br />Bethesda, MD<br />3 Bedroom Split Level<br /></strong><strong id=savings style=color:#74cb05>38%</strong><br /><strong id=quote>&quot;I wouldn't trust my home with anybody else&quot;</strong>";

arrFadeLinkshome[10] = "http://www.msqins.com";
arrFadeTitleshome[10] = "<strong id=customer>Shauna T.<br />Reston, VA<br />4 Bedroom Ranch<br /></strong><strong id=savings style=color:#74cb05>32%</strong><br /><strong id=quote>&quot;I loved dealing with just one agent and getting multiple quotes&quot;</strong>";

arrFadeLinkshome[11] = "http://www.msqins.com";
arrFadeTitleshome[11] = "<strong id=customer>Nikki K.<br />Arlington, VA<br />3 Bedroom Contemporary<br /></strong><strong id=savings style=color:#74cb05>33%</strong><br /><strong id=quote>&quot;So many more policy features at a lower price&quot;</strong>";

arrFadeLinkshome[12] = "http://www.msqins.com";
arrFadeTitleshome[12] = "<strong id=customer>Samantha U.<br />Falls Church, VA<br />3 Bedroom Row home<br /></strong><strong id=savings style=color:#74cb05>28%</strong><br /><strong id=quote>&quot;I loved being presented with three quotes from only the best insurers&quot;</strong>";

arrFadeLinkshome[13] = "http://www.msqins.com";
arrFadeTitleshome[13] = "<strong id=customer>Kevin S.<br />McLean, VA<br />5 Bedroom Federal<br /></strong><strong id=savings style=color:#74cb05>35%</strong><br /><strong id=quote>&quot;I've never made so much money with just one phone call&quot;</strong>";
}

// DO NOT EDIT BELOW THIS LINE!!!

var m_FadeOuthome = 255;
var m_FadeInhome=0;
var m_Fadehome = 0;
var m_FadeStephome = 3;
var m_FadeWaithome = 5000;
var m_bFadeOuthome = true;

var m_iFadeIntervalhome;


var arrFadeLinkshome;
var arrFadeTitleshome;
var arrFadeCursorhome = 0;
var arrFadeMaxhome;

function Fadewlhome() {
  m_iFadeIntervalhome = setInterval(fade_ontimerhome, 10);
  arrFadeLinkshome = new Array();
  arrFadeTitleshome = new Array();
  setupFadeLinkshome();
  arrFadeMaxhome = arrFadeLinkshome.length-1;
  setFadeLinkhome();
}

function setFadeLinkhome() {
  var ilinkhome = document.getElementById("fade_link_home");
  ilinkhome.innerHTML = arrFadeTitleshome[arrFadeCursorhome];
  ilinkhome.href = arrFadeLinkshome[arrFadeCursorhome];
}

function fade_ontimerhome() {
  if (m_bFadeOuthome) {
    m_Fadehome+=m_FadeStephome;
    if (m_Fadehome>m_FadeOuthome) {
      arrFadeCursorhome++;
      if (arrFadeCursorhome>arrFadeMaxhome)
        arrFadeCursorhome=0;
      setFadeLinkhome();
      m_bFadeOuthome = false;
    }
  } else {
    m_Fadehome-=m_FadeStephome;
    if (m_Fadehome<m_FadeInhome) {
      clearInterval(m_iFadeIntervalhome);
      setTimeout(Faderesumehome, m_FadeWaithome);
      m_bFadeOuthome=true;
    }
  }
  var ilinkhome = document.getElementById("fade_link_home");
  if ((m_Fadehome<m_FadeOuthome)&&(m_Fadehome>m_FadeInhome))
    ilinkhome.style.color = "#" + ToHex(m_Fadehome);
}

function Faderesumehome() {
  m_iFadeIntervalhome = setInterval(fade_ontimerhome, 10);
}

function ToHex(strValuehome) {
  try {
    var resulthome= (parseInt(strValuehome).toString(16));

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


