function setupFadeLinks() {
  
  arrFadeTitles[0] = "&quot;Just a wonderful place. Absolutely perfect. &quot;<br><br><label style='margin-left:150px; font-weight:bold;'>Fabio P.</label>";
  arrFadeLinks[1] = "";
  arrFadeTitles[1] = "&quot;The Estate is a beautiful property.  The house was clean and ready.&quot;<br><br><label style='margin-left:140px; font-weight:bold;'>Christopher G.</label>";
  arrFadeLinks[2] = "";
  arrFadeTitles[2] = "&quot;We had another great vacation and are looking forward to next year.&quot;<br><br><label style='margin-left:155px; font-weight:bold;'>Anthony J.</label>";
  arrFadeLinks[3] = "";
  arrFadeTitles[3] = "&quot;Top-shelf service, outstanding amenities, great golf courses and good friends -- what more do you need?&quot;<br><br><label style='margin-left:155px; font-weight:bold;'>Anthony J.</label>";
  arrFadeLinks[4] = "";
  arrFadeTitles[4] = "&quot;The Estate was everything and more than we expected. 1st class all the way.&quot;<br><br><label style='margin-left:155px; font-weight:bold;'>Keith W.</label>";
   arrFadeLinks[5] = "";
  arrFadeTitles[5] = "&quot;It was pretty awesome and one of the nicer places we've stayed. It seemed to make the trip a little more relaxing.&quot;<br><br><label style='margin-left:155px; font-weight:bold;'>Richard V.</label>";
   arrFadeLinks[6] = "";
  arrFadeTitles[6] = "&quot;Perfect golf house for our group of 8 guys.&quot;<br><br><label style='margin-left:155px; font-weight:bold;'>Ronald M.</label>";
   arrFadeLinks[7] = "";
  arrFadeTitles[7] = "&quot;We had 12 golfers that all walked away with a smile on their face. The house was incredible. It was easy and the overall experience was great.&quot;<br><label style='margin-left:155px; font-weight:bold;'>Will H.</label>";
   arrFadeLinks[8] = "";
  arrFadeTitles[8] = "&quot;The Estate is great space and lots of stuff to keep busy - pool table, ping pong, etc.&quot;<br><br><label style='margin-left:155px; font-weight:bold;'>Ken G.</label>";
   arrFadeLinks[9] = "";
  arrFadeTitles[9] = "&quot;The house was spectacular.  Everyone said it's the best house we've stayed in yet.  The balcony view is top notch, pool is refreshing, etc.  Couldn't be better.&quot;<br><label style='margin-left:155px; font-weight:bold;'>John B.</label>";
   arrFadeLinks[10] = "";
  arrFadeTitles[10] = "&quot;Very nice - best we have stayed at.&quot;<br><br><label style='margin-left:155px; font-weight:bold;'>Bruce H.</label>";
  arrFadeLinks[11] = "";
  arrFadeTitles[11] = "&quot;The house was WONDERFUL!  Lisa the property manager was extremely helpful and made sure we had everything we needed.  Chris came by as well.&quot;<br><label style='margin-left:155px; font-weight:bold;'>Kim S.</label>";
  arrFadeLinks[12] = "";
  arrFadeTitles[12] = "&quot;We could not have asked for better lodging facilities and friendlier people to help us! &quot;<br><label style='margin-left:155px; font-weight:bold;'>Kim S.</label>";
  arrFadeLinks[13] = "";
  arrFadeTitles[13] = "&quot;The property was amazing - it has everything you could imagine .&quot;<br><br><label style='margin-left:155px; font-weight:bold;'>Justin G.</label>";
  
  
}

// You can also play with these variables to control fade speed, fade color, and how fast the colors jump.

var m_FadeOut = 255;
var m_FadeIn=0;
var m_Fade = 0;
var m_FadeStep = 3;
var m_FadeWait = 5000;
var m_bFadeOut = true;

var m_iFadeInterval;

window.onload = Fadewl;

var arrFadeLinks;
var arrFadeTitles;
var arrFadeCursor = 0;
var arrFadeMax;

function Fadewl() {
  m_iFadeInterval = setInterval(fade_ontimer, 10);
  arrFadeLinks = new Array();
  arrFadeTitles = new Array();
  setupFadeLinks();
  arrFadeMax = arrFadeLinks.length-1;
  setFadeLink();
}

function setFadeLink() {
  var ilink = document.getElementById("fade_link");
  ilink.innerHTML = arrFadeTitles[arrFadeCursor];
  ilink.href = arrFadeLinks[arrFadeCursor];
}

function fade_ontimer() {
  if (m_bFadeOut) {
    m_Fade+=m_FadeStep;
    if (m_Fade>m_FadeOut) {
      arrFadeCursor++;
      if (arrFadeCursor>arrFadeMax)
        arrFadeCursor=0;
      setFadeLink();
      m_bFadeOut = false;
    }
  } else {
    m_Fade-=m_FadeStep;
    if (m_Fade<m_FadeIn) {
      clearInterval(m_iFadeInterval);
      setTimeout(Faderesume, m_FadeWait);
      m_bFadeOut=true;
    }
  }
  var ilink = document.getElementById("fade_link");
  if ((m_Fade<m_FadeOut)&&(m_Fade>m_FadeIn))
    ilink.style.color = "#" + ToHex(m_Fade);
}

function Faderesume() {
  m_iFadeInterval = setInterval(fade_ontimer, 10);
}

function ToHex(strValue) {
  try {
    var result= (parseInt(strValue).toString(16));

    while (result.length !=2)
            result= ("0" +result);
    result = result + result + result;
    return result.toUpperCase();
  }
  catch(e)
  {
  }
}
