function setupFadeLinks() {
arrFadeLinks[0] ="";
arrFadeTitles[0] = "The fact that I am a woman does not make me a different kind of Christian, but the fact that I am a Christian does make me a different kind of woman.
Elizabeth Elliot";
arrFadeLinks[1] ="";
arrFadeTitles[1] = "But we all, with unveiled face, beholding as in a mirror the glory of the Lord, are being transformed into the same image from glory to glory, just as by the Spirit of the Lord.
2 Corinthians 3:18";
arrFadeLinks[2] ="";
arrFadeTitles[2] = "We can be confident that His desire to reveal will always be greater than our desire to know.
Carrie Anna Pierce";
arrFadeLinks[3] ="";
arrFadeTitles[3] = "What I tell you in the dark, speak in the daylight; what is whispered in your ear, proclaim from the roofs.
Matt: 10:27";
arrFadeLinks[4] ="";
arrFadeTitles[4] = "We can trust an unknown future to a known God.
Corrie Ten Boom";
arrFadeLinks[5] ="";
arrFadeTitles[5] = "Jesus, I am resting, resting In the joy of what Thou art; I am finding out the greatness Of Thy loving heart!
Jean Sophie Pigott 1876";
arrFadeLinks[6] ="";
arrFadeTitles[6] = "You shall receive power when the Holy Spirit has come upon you; and you shall be witnesses to Me in Jerusalem, and in all Judea and Samaria, and to the end of the earth.
Acts 1:8";
arrFadeLinks[7] ="";
arrFadeTitles[7] = "It is good to praise the Lord and make music to your name, O Most High.
Psalm 92:1";
arrFadeLinks[8] ="";
arrFadeTitles[8] = "Your word is a lamp to my feet and a light for my path.
Psalm 119:105";
arrFadeLinks[9] ="";
arrFadeTitles[9] = "Courage is fear that has said its prayers.
Jill Briscoe";
}
// 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 = 6600;
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_Fadem_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)
{
}
}