//default speed is 5 seconds, Change that as desired
var speed=9000

var news=new Array()
news[0]="<center><br><b>SAI THOUGHTS</center><br></b>"
news[1]="<center><br>Love All, Serve All.</center><br>"
news[2]="<center>Wisdom is not so easy, whereas devotion is very easy;<br>it is complete love. When you have firm faith in your heart<br>and lead your life with that Love, there is no higher path.</center>"
news[3]="<center>If some people say there is no God,<br>It only means they are at too great a distance<br>to be aware of Him.</center>"
news[4]="<center><br>Dreams relating to God are real.</center><br>"
news[5]="<center><br>Each man carries his destiny in his own hands.</center><br>"
news[6]="<center>There Is Only One Religion, The Religion Of Love<br>There Is Only One God, He Is Omnipresent.</center><br>"
news[7]="<center>Do not belittle any religion or give pre-domainance<br>to any single religion.</center><br>"
news[8]="<center>Love knows no fear and so<br>love needs no falsehood to support it.</center><br>"
news[9]="<center><br>Our good conduct is our true wealth.</center><br>"
news[10]="<center>Man seeks to change the foods available in nature to<br>suit his tastes, thereby putting an end<br>to the very essence of life contained in them.</center>"
news[11]="<center>Happiness lies not in doing what you like to do,<br>but in liking what you have to do.</center><br>"
news[12]="<center>Human life is undoubtedly the highest in evolution<br>and to give it meaning, spiritual endeavour is essential,<br>endeavour that is pure and holy.</center>"
news[13]="<center><br>Unity Is Divinity.</center><br>"
news[14]="<center><br>My Life, Is My Message.</center><br>"
news[15]="<center><br>Wisdom is compassion at its highest.</center><br>"
news[16]="<center>Start the day with Love, Spend the day with Love,<br>Fill the day with love, End the day with Love.<br>This is the way to God.</center>"
news[17]="<center><br>All Religions Are The Facets Of The Same Truth.</center><br>"
news[18]="<center>I have come to light the lamp of love in your hearts,<br>to see that it shines day by day with added luster.</center><br>"
news[19]="<center>I shall be with you, where ever you are,<br>guarding you and guiding you.<br>March on, have no fear.</center>"
news[20]="<center>Whatever acts a good or bad man may do,<br>the fruits thereof follow him<br>and will never stop pursuing him.</center>"
news[21]="<center>Science is below the mind,<br>Spirituality is beyond the mind.</center><br>"
news[22]="<center>Devotion is not a uniform to be worn on certain days<br>when you gather for worship and then to be laid aside<br>when the service is over.</center>"
news[23]="<center>Man seeks to change the foods available in nature<br>to suit his tastes, thereby putting an end<br>to the very essence of life contained in them.</center>"
news[24]="<center>Do not waste a single moment,<br>in idling or loose living.</center><br>"
news[25]="<center>Duty without love is deplorable;<br>Duty with love is desirable;<br>Love without duty is Divine.</center>"
news[26]="<center>God is the doer,<br>you are but the instrument.</center><br>"
news[27]="<center>Love of the Country is the basis on which<br>you can build Love for the world community.</center><br>"
news[28]="<center>Work disinterestedly.<br>Content to do one's duty as best as one can.</center><br>"
news[29]="<center>If we safeguard righteousness,<br>it will, in its turn, safeguard us.</center><br>"
//expand or shorten this list of messages as desired

i=0
if (document.all)
tickerobject=document.all.subtickertape.style
else
tickerobject=document.tickertape.document
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers)
setTimeout("window.onresize=regenerate",450)
}

function update(){
 BgFade(0xff,0xff,0xff, 0x00,0x00,0x00,10);
if (document.layers){
document.tickertape.document.subtickertape.document.write('<span class="subtickertapefont">'+news[i]+'</span>')
document.tickertape.document.subtickertape.document.close()
}
else 
document.all.subtickertape.innerHTML=news[i]

if (i<news.length-1)
i++
else
i=0
setTimeout("update()",speed)
}

 function BgFade(red1, grn1, blu1, red2,
 grn2, blu2, steps) {
 sred = red1; sgrn = grn1; sblu = blu1; 
 ered = red2; egrn = grn2; eblu = blu2; 
 inc = steps; 
 step = 0; 
 RunFader();
 }
 function RunFader() {
 var epct = step/inc; 
 var spct = 1 - epct; 
 if (document.layers)
 tickerobject.bgColor =
 Math.floor(sred * spct + ered *
 epct)*256*256 +
 Math.floor(sgrn * spct + egrn * epct)*256 +
 Math.floor(sblu * spct + eblu * epct); 
 else
 tickerobject.backgroundColor=
 Math.floor(sred * spct + ered *
 epct)*256*256 +
 Math.floor(sgrn * spct + egrn * epct)*256 +
 Math.floor(sblu * spct + eblu * epct); 
 if ( step < inc ) {
 setTimeout('RunFader()',50); 
 }
 step++;
 }

