function setupFadeLinks() {
  arrFadeLinks[0] = "http://web/bmexpress/testimonials.html";
  arrFadeTitles[0] = "<b>Henry Talisay of Rooty Hill, NSW</b><br>  &quot;Tulo ka tuig na ko ga padala sa BMExpress, pero wa pa gyud ko nabigo. Mau man lang gihapun ang ilang serbisyo. Pas-pas gihapun.&quot; (&quot;I have been sending package for three years to BMExpress, but still they did not change. Still fast delivery.&quot;)<br><br><b>Maricris Borja of Dee Why, NSW</b><br>&quot;Maraming salamat BMExpress. Express talaga kayo!&quot; (&quot;Thanks to BMExpress. You are really an express!&quot;)";
 
  arrFadeLinks[1] = "http://web/bmexpress/testimonials.html";
  arrFadeTitles[1] = "<b>Teresita Gealogo of Cabramatta, NSW</b><br> &quot;BM Express, salamat talaga sa magandang serbisyo.&quot; (&quot;BMExpress, thank you very much for such nice service.&quot;)<br><br><b>Abdul Sagani Mahmud of West Ryde, NSW</b><br> &quot;Wai byah ha BMExpress, mabiskay tuud ing serbisyo nila. Naka tu na nagpara ako ha asawa ko ha laum sing unum bulan. Sibu da in guwa nya, express tuud. TUY-TUYA HADYAH ING BIYAN SERBISYO NYO.&quot; (&quot;BMExpress is really something, their service is really fast. I have been sending package to my wife for three times in six months and still the same outcome, really express. KEEP IT UP...&quot;)";

  arrFadeLinks[2] = "http://web/bmexpress/testimonials.html";
  arrFadeTitles[2] = "<b>May Mabuti of Kingswood, NSW</b><br> &quot;Subukan niyong magpadala sa BM Express, mura na, maganda pa serbisyo. BM Express, maraming salamat!&quot; (&quot;Try sending your package thru BMExpress, affordable and nice service. BMExpress, thank you very much.&quot;)<br><br><b>Joe Obin of Auburn, NSW </b><br> &quot;Maayo gid ang BM Express, nabaton dayon sang utod ko ang nga ginpadala ko! Salamat gid BM Express.&quot; (&quot;BMExpress is really good. The baggage I send was immediately received by my brother. Thank you very much, BMExpress.&quot;)";
  
  arrFadeLinks[3] = "http://web/bmexpress/testimonials.html";
  arrFadeTitles[3] = "<b>Cecil Gordo of Minto, NSW </b><br> &quot;I-recommend ko ang company nyo sa lahat ng mga kaibigan ko. Salamat sa bilis ng serbisyo nyo BMExpress.&quot; (&quot;I will recommend you to to all my friends. Thank you for your fast service.&quot;)<br><br><b>Conchita Allauigan of Fairfield, NSW </b><br> &quot;This is my fourth time to send package to my sister in the Philippines, thru BM Express. Their service is still good and fast. Thank you and more power to you!&quot;";
  
  arrFadeLinks[4] = "http://web/bmexpress/testimonials.html";
  arrFadeTitles[4] = "<b>Reyna Basco of Mount Druitt, NSW  </b><br> &quot;More power. Thanks to you BMExpress for such a great service. I am really happy and satisfied of the service you showed me. Keep it up...&quot;<br><br><b>Don Guillar of Georgetown, QLD </b><br> &quot;BM Express, thank you for your good service. The package was received yesterday and I’m very satisfied of your fast delivery.&quot;";
}

// 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 = 1;
var m_FadeWait = 1600;
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)
  {
  }
}
