//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='300px'
var scroller_height='100px'
var bgcolor='#FFFFCC'

var pause=8000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)
var strFont = "<p align='center'><font face='Verdana' color='#000000'>"
var strEndfont = "</font></p>"

var scrollercontent=new Array()

//-----------------------------------------------------------------------------------
//Define scroller contents. Extend or contract array as needed
scrollercontent[0] = strFont + "If a mute swears, does his mother wash his hands with soap?" + strEndfont;
scrollercontent[1] = strFont + "What's another word for synonym?" + strEndfont;
scrollercontent[2] = strFont + "When sign makers go on strike, who writes their signs?" + strEndfont;
scrollercontent[3] = strFont + "Where do forest rangers go to get away from it all?" + strEndfont;
scrollercontent[4] = strFont + "Why isn't there mouse-flavored cat food?" + strEndfont;
scrollercontent[5] = strFont + "Why do they report power outages on TV?" + strEndfont;
scrollercontent[6] = strFont + "Is it possible to be totally partial?" + strEndfont
scrollercontent[7] = strFont + "If a parsely farmer is sued, can they garnish his wages?" + strEndfont
scrollercontent[8] = strFont + "Why don't sheep shrink in the rain?" + strEndfont
scrollercontent[9] = strFont + "Should vegetarians eat animal crackers?" + strEndfont
scrollercontent[10] = strFont + "Why do people who know the least, know it the loudest?" + strEndfont
scrollercontent[11] = strFont + "The sooner you fall behind, the more time you have to catch up." + strEndfont
scrollercontent[12] = strFont + "The facts, although interesting, are irrelevant." + strEndfont
scrollercontent[13] = strFont + "The lack of evidence is proof that the cover-up is working." + strEndfont
scrollercontent[14] = strFont + "The annual Psychics Convention has been cancelled - but then, you already knew that." + strEndfont
scrollercontent[15] = strFont + "One-seventh of your life is spent on Monday." + strEndfont
scrollercontent[16] = strFont + "Friends may come and go, but enemies accumulate." + strEndfont
scrollercontent[17] = strFont + "If ignorance is bliss, they why aren't I happier?." + strEndfont
scrollercontent[18] = strFont + "Indecision is the key to flexibility." + strEndfont
scrollercontent[19] = strFont + "You can't tell which way the train went by looking at the tracks." + strEndfont
scrollercontent[20] = strFont + "Anarchy wouldn't be so bad, if it were better organized." + strEndfont
scrollercontent[21] = strFont + "Perhaps it's a coincidence, but man's best friend can't talk." + strEndfont
scrollercontent[22] = strFont + "If bad drivers go to Traffic Court, does bad food go to the Food Court?" + strEndfont
scrollercontent[23] = strFont + "Money talks. Mine says Bye-Bye!" + strEndfont
scrollercontent[24] = strFont + "Practice makes Perfeckt." + strEndfont
scrollercontent[25] = strFont + "Some people drink at the fountain of knowledge. Others merely gargle." + strEndfont

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

//***************************************************************************
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(){

// Start at a random point
curindex = Math.floor(Math.random() * (scrollercontent.length - 1) + 1);

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)
}

}

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()
	}

// Increment to the next message, wrapping around to the beginning as needed.
curindex=(curindex<scrollercontent.length-1)? curindex+1 : 0

}


//***************************************************************************
function WriteIt()
{
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(opa city=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(opa city=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>')
}

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

