//Make new array and get the current day in var today
var msg = new Array();
Stamp = new Date();
today = Stamp.getDate();
//put the tip of the day in each msg[x] string
//change tips each month, automatically switches every day
msg[0]="It is written, Man shall not live by bread alone, but by every word that proceedeth out of the mouth of God"
msg[1]="It is written again, Thou shalt not tempt the Lord thy God."
msg[2]="Thou shalt worship the Lord thy God, and him only shalt thou serve."
msg[3]="Repent: for the kingdom of heaven is at hand."
msg[4]="Follow me, and I will make you fishers of men."
msg[5]="Let your light so shine before men, that they may see your good works, and glorify your Father which is in heaven."
msg[6]="Lay not up for yourselves treasures upon earth, But lay up for yourselves treasures in heaven, For where your treasure is, there will your heart be also."
msg[7]="But seek ye first the kingdom of God, and his righteousness; and all these things shall be added unto you."
msg[8]="Why beholdest thou the mote that is in thy brother’s eye, but considerest not the beam that is in thine own eye?"
msg[9]="Strait is the gate, and narrow is the way, which leadeth unto life, and few there be that find it."
msg[10]="Verily, verily, I say unto thee, Except a man be born again, he cannot see the kingdom of God"
msg[11]="And as Moses lifted up the serpent in the wilderness, even so must the Son of man be lifted up: 15That whosoever believeth in him should not perish, but have eternal life"
msg[12]="I am the way, the truth, and the life: no man cometh unto the Father, but by me"
msg[13]="No man can come to me, except the Father which hath sent me draw him: and I will raise him up at the last day"
msg[14]="I am the light of the world: he that followeth me shall not walk in darkness, but shall have the light of life."
msg[15]="The harvest truly is plenteous, but the labourers are few; 38Pray ye therefore the Lord of the harvest, that he will send forth labourers into his harvest."
msg[16]="Come unto me, all ye that labour and are heavy laden, and I will give you rest. "
msg[17]="If any man will come after me, let him deny himself, and take up his cross, and follow me"
msg[18]="Thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy mind."
msg[19]="Ye have not chosen me, but I have chosen you, and ordained you, that ye should go and bring forth fruit, and that your fruit should remain: that whatsoever ye shall ask of the Father in my name, he may give it you."
msg[20]="Go ye therefore, and teach all nations, baptizing them in the name of the Father, and of the Son, and of the Holy Ghost"
msg[21]="I am with you alway, even unto the end of the world."
msg[22]="Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you"
msg[23]="Take therefore no thought for the morrow: for the morrow shall take thought for the things of itself. Sufficient unto the day is the evil thereof."
msg[24]="Ye cannot serve God and mammon."
msg[25]="Ye are the salt of the earth: but if the salt have lost his savour, wherewith shall it be salted? "
msg[26]="Till heaven and earth pass, one jot or one tittle shall in no wise pass from the law, till all be fulfilled."
msg[27]="Whosoever shall compel thee to go a mile, go with him twain."
msg[28]="Love your enemies, bless them that curse you, do good to them that hate you, and pray for them which despitefully use you"
msg[29]="For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life."
msg[30]="Thou shalt love thy neighbour as thyself"

//Specify the marquee's width (in pixels)
var marqueewidth=640
//Specify the marquee's height (in pixels, NS Only)
var marqueeheight=20
//Specify the marquee's scroll speed (higher is faster)
var speed=3
//Specify the marquee contents

if (document.all)
document.write('<marquee scrollAmount='+speed+' style="width:'+marqueewidth+'"><font face="Arial">'+(msg[today-1])+'</font></marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write('<nobr>'+(msg[today-1])+'</nobr>')
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.width
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.left-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.left=marqueewidth
scrollit()
}
}

window.onload=regenerate2

