//Translucent scroller- By Dynamic Drive
//For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
//This credit MUST stay intact for use

var scroller_width='550px'
var scroller_height='35px'
var bgcolor='#F8E4B1'
var pause=5000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)

var scrollercontent=new Array()
//Define scroller contents. Extend or contract array as needed
scrollercontent[0]='<p>"The Law of Nature is that you should not stand still in any position. You should go on, march on and on." <br> Swami Rama Tirtha</p>'
scrollercontent[1]='<p>"The way to gain anything, is to lose it." <br> Swami Rama Tirtha</p>'
scrollercontent[2]='<p>"Faith is the bird that feels the light and sings while the dawn is still dark."<br> Rabindranath Tagore</p>'
scrollercontent[3]='<p>"Do not fall in love, but Rise in love" <br> Swami Parthasarathy</p>'
scrollercontent[4]='<p>"All grumbling is tantamount to, ‘Oh! Why is the lily not an oak‘?"<br> Anon</p>'
scrollercontent[5]='<p>"The trouble with most folks is not so much their ignorance, as their ‘knowing’ so many things which ain’t so" <br> Josh Billings</p>'
scrollercontent[6]='<p>"Intellectual growth should commence at birth and cease only at death."<br>Albert Einstein</p>'
scrollercontent[7]='<p>"Iron and gold are good for buying iron and gold; that is all."<br> Swami Rama Tirtha</p>'
scrollercontent[8]='<p>"Remember, Life is to give, not to take." <br> <i>Les Miserable</i>,Victor Hugo</p>'
scrollercontent[9]='<p>"You must raise yourself by yourself."<br>Bhagavad Gita<i> Ch6_V5</i></p>'
scrollercontent[10]='<p>"Get thee behind me Satan. I will have none at thy hands."<br> Jesus Christ</p>'
scrollercontent[11]='<p>"Intense work is Rest." <br> Swami Rama Tirtha</p>'
scrollercontent[12]='<p>"Every man is a divinty in disguise, a god playing the fool."<br>Ralph Waldo Emerson</p>'
scrollercontent[13]='<p>"Fools rush in where angels fear to tread."<br>Alexander Pope</p>'
scrollercontent[14]='<p>"There’s a divinity that shapes our ends."<br><i>Hamlet</i> Shakespeare</p>'
scrollercontent[15]='<p>"Happy and blessed hour when wickedness stands forth revealed as goodness bereft of a guide."<br>Maurice Maeterlinckes</p>'
scrollercontent[15]='<p>"Happy and blessed hour when wickedness stands forth revealed as goodness bereft of a guide."<br>Maurice Maeterlinckes</p>'

////NO need to edit beyond here/////////////

var ie4=document.all
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

if (ie4||dom)
document.write('<div style="position:relative;width:'+scroller_width+';height:'+scroller_height+';overflow:hidden"><div id="canvas0" style="position:absolute;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div><div id="canvas1" style="position:absolute;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div></div>')
else if (document.layers){
document.write('<ilayer id=tickernsmain visibility=hide width='+scroller_width+' height='+scroller_height+' bgColor='+bgcolor+'><layer id=tickernssub width='+scroller_width+' height='+scroller_height+' left=0 top=0>'+scrollercontent[0]+'</layer></ilayer>')
}

var curpos=scroller_height*(1)
var degree=10
var curcanvas="canvas0"
var curindex=0
var nextindex=1

function moveslide(){
if (curpos>0){
curpos=Math.max(curpos-degree,0)
tempobj.style.top=curpos+"px"
}
else{
clearInterval(dropslide)
if (crossobj.filters)
crossobj.filters.alpha.opacity=100
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=1
nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1"
tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas)
tempobj.innerHTML=scrollercontent[curindex]
nextindex=(nextindex<scrollercontent.length-1)? nextindex+1 : 0
setTimeout("rotateslide()",pause)
}
}

function rotateslide(){
if (ie4||dom){
resetit(curcanvas)
crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.style.zIndex++
if (crossobj.filters)
document.all.canvas0.filters.alpha.opacity=document.all.canvas1.filters.alpha.opacity=20
else if (crossobj.style.MozOpacity)
document.getElementById("canvas0").style.MozOpacity=document.getElementById("canvas1").style.MozOpacity=0.2
var temp='setInterval("moveslide()",50)'
dropslide=eval(temp)
curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"
}
else if (document.layers){
crossobj.document.write(scrollercontent[curindex])
crossobj.document.close()
}
curindex=(curindex<scrollercontent.length-1)? curindex+1 : 0
}

function resetit(what){
curpos=parseInt(scroller_height)*(1)
var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
crossobj.style.top=curpos+"px"
}

function startit(){
crossobj=ie4? eval("document.all."+curcanvas) : dom? document.getElementById(curcanvas) : document.tickernsmain.document.tickernssub
if (ie4||dom){
crossobj.innerHTML=scrollercontent[curindex]
rotateslide()
}
else{
document.tickernsmain.visibility='show'
curindex++
setInterval("rotateslide()",pause)
}
}

if (ie4||dom||document.layers)
window.onload=startit
