/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 15;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="";
body="You said, 'It's impossible' He said, 'All things are possible.' (Luke 18:27)";
}

if (quotes==1) {
title="";
body="You said, 'I'm too tired' He said, 'I will give you rest.' (Matthew 11:28-30)";
}

if (quotes==2) {
title="";
body="You said, 'Nobody really loves me. 'He said, 'I love you.' (John 3:16)";
}

if (quotes==3) {
title="";
body="You said, 'I can't go on.' He said, 'My grace is sufficient.'(II Corinthians 12:19)";
}

if (quotes==4) {
title="";
body="You said, 'I can't figure things out' He said, 'I will direct your steps.' (Proverbs 20:24)";
}

if (quotes==5) {
title="";
body="You said, 'I can't do it.' He said, 'You can do all things.' (Phil 4:13)";
}

if (quotes==6) {
title="";
body="You said, 'I'm not able.' He said, 'I am able.' (II Corinthians 9:8)";
}

if (quotes==7) {
title="";
body="You said, 'It's not worth it.' He said, 'It will be worth it.' (Romans 8:28)";
}

if (quotes==8) {
title="";
body="You said, 'I can't forgive myself,' He said,' I forgive you.' (1 John 1:9 & Romans 8:1)";
}

if (quotes==9) {
title="";
body="You said, 'I can't manage.' He said, 'I will supply all your needs.' (Phil 4:19)";
}

if (quotes==10) {
title="";
body="You said, 'I'm afraid.' He said, 'I have not given you a spirit of fear.' (II Timothy 1:7)";
}

if (quotes==11) {
title="";
body="You said, 'I'm always worried and fustrated.' He said, 'Cast all your cares on me.' (1 Peter 5:7)";
}

if (quotes==12) {
title="";
body="You said, 'I don't have enough faith.' He said, 'I've given everyone a measure of faith.' (Romans 12:8)";
}

if (quotes==13) {
title="";
body="You said, 'I'm not smart enough.' He said, 'I give you wisdom.' (1 Corinthians 1:30)";
}

if (quotes==14) {
title="";
body="You said, 'I feel all alone.' He said, 'I will never leave you or forsake you.' (Hebrew 13:5)";
}

document.write('<center>');
document.write('<small><strong>' + title + '<br />');
document.write(''+ body +'');
document.write('</strong></small></center>');