Fortune = []
Fortune[0] = "It'/s only failure when you give up"
Fortune[1] = "Allow your heart to guide you"
Fortune[2] = "The harder you work, the luckier you will be"
Fortune[3] = "A friend is a present you give yourself"
Fortune[4] = "Trust your instincts"
Fortune[5] = "Be prepared to modify your plans"
Fortune[6] = "There is no limit to love's endurance"
Fortune[7] = "Avoid scattering your energy"
Fortune[8] = "Your leadership qualities will shine"
Fortune[9] = "Now is a good time to finish old business"
Fortune[10] = "A leader's power is to empower others"
Fortune[11] = "He who hurries cannot walk with dignity"
Fortune[12] = "Someone is looking out for you"
Fortune[13] = "Allow compassion to guide you"
Fortune[14] = "You will find answers in silence"
Fortune[15] = "Be a friend and you will make friends"
Fortune[16] = "People are naturally attracted to you"
Fortune[17] = "Only the wise listen to advice"
Fortune[18] = "Appearances are often deceiving"
Fortune[19] = "A fresh start is needed"
Fortune[20] = "You have a secret admirer"
Fortune[21] = "You have exceeded what was expected"
Fortune[22] = "A closed mouth gathers no feet"



function loadFortune()
{
NoFortunes = (Fortune.length)-1;
NewFortune = Math.ceil(Math.random()*NoFortunes);
FortuneText = Fortune[NewFortune];
document.getElementById('FortuneFrame').style.backgroundImage = 'url("IMAGES/foreground.png")';
document.getElementById('FortuneAnswer').innerHTML = FortuneText;

document.getElementById('getFortune').style.visibility = 'hidden';
document.getElementById('copyFortune').style.visibility = 'visible';


}
