
//configure the below five variables to change the style of the scroller
var scrollerwidth=200
var scrollerheight=85
var scrollerbgcolor='White'
//set below to '' if you don't wish to use a background image
var scrollerbackground='scrollerback.gif'

//configure the below variable to change the contents of the scroller
var messages=new Array()
messages[0]="<font face='Verdana' size=1>And now here is my secret, a very simple secret; it is only with the heart that one can see rightly, what is essential is invisible to the eye.</a></font>"
messages[1]="<font face='Verdana' size=1>Airplane travel is nature's way of making you look like your passport photo.</a></font>"
messages[2]="<font face='Verdana' size=1>A conservative is a man who believes that nothing should be done for the first time.</a></font>"
messages[3]="<font face='Verdana' size=1>A baby is God's opinion that the world should go on.</a></font>"
messages[4]="<font face='Verdana' size=1>A bank is a place where they lend you an umbrella in fair weather and ask for it back when it begins to rain.</a></font>"
messages[5]="<font face='Verdana' size=1><b>A beauty is a woman you notice; A charmer is one who notices you.</a></font>"
messages[6]="<font face='Verdana' size=1><b>A behaviorist is someone who pulls habits out of rats.</a></font>"
messages[7]="<font face='Verdana' size=1><b>A billion here, a billion there, and pretty soon you're talking about real money.</a></font>"
messages[8]="<font face='Verdana' size=1><b>A child of five would understand this . Send someone to fetch a child of five.</a></font>"
messages[9]="<font face='Verdana' size=1><b>A conservative is a man who does not think that anything should be done for     the first time.</a></font>"
messages[10]="<font face='Verdana' size=1><b>A conservative is a man who is too cowardly to fight and too fat to run.</a></font>"
messages[11]="<font face='Verdana' size=1><b>A conservative is a man with two perfectly good legs who, however, has never learned how to walk forward.</a></font>"
messages[12]="<font face='Verdana' size=1><b>A conservative is one who admires radicals centuries after they're dead.</a></font>"
messages[13]="<font face='Verdana' size=1><b>A bank is a place where they lend you an umbrella in fair weather and ask for it back when it begins to rain.</a></font>"
messages[14]="<font face='Verdana' size=1><b>A correct answer is like an affectionate kiss.</a></font>"
messages[15]="<font face='Verdana' size=1><b>A coward is a hero with a wife, kids, and a mortgage.</a></font>"
messages[16]="<font face='Verdana' size=1><b>A critic is a legless man who teaches running.</a></font>"
messages[17]="<font face='Verdana' size=1><b>A deed without a name.</a></font>"
messages[18]="<font face='Verdana' size=1><b>A difference of opinion is what makes horse racing and missionaries.</a></font>"
messages[19]="<font face='Verdana' size=1><b>A diplomat is a man who always remembers a woman's birthday but never remembers her age.</a></font>"
messages[20]="<font face='Verdana' size=1><b>A doctor can bury his mistakes but an architect can only advise his clients to plant vines.</a></font>"
messages[21]="<font face='Verdana' size=1><b>A dollar saved is a quarter earned.</a></font>"
messages[22]="<font face='Verdana' size=1><b>A dress makes no sense unless it inspires men to want to take it off you.</a></font>"
messages[23]="<font face='Verdana' size=1><b>A fanatic is one who can't change his mind and won't change the subject.</a></font>"
messages[24]="<font face='Verdana' size=1><b>A finely tempered nature longs to escape from the personal life into the world of objective perception and thought.</a></font>"
messages[25]="<font face='Verdana' size=1><b>A fly is as untamable as a hyena.</a></font>"




///////Do not edit pass this line///////////////////////

if (messages.length>1)
i=2
else
i=0

function move1(whichlayer){
tlayer=eval(whichlayer)
if (tlayer.top>0&&tlayer.top<=5){
tlayer.top=0
setTimeout("move1(tlayer)",3000)
setTimeout("move2(document.main.document.second)",3000)
return
}
if (tlayer.top>=tlayer.document.height*-1){
tlayer.top-=5
setTimeout("move1(tlayer)",100)
}
else{
tlayer.top=scrollerheight
tlayer.document.write(messages[i])
tlayer.document.close()
if (i==messages.length-1)
i=0
else
i++
}
}

function move2(whichlayer){
tlayer2=eval(whichlayer)
if (tlayer2.top>0&&tlayer2.top<=5){
tlayer2.top=0
setTimeout("move2(tlayer2)",3000)
setTimeout("move1(document.main.document.first)",3000)
return
}
if (tlayer2.top>=tlayer2.document.height*-1){
tlayer2.top-=5
setTimeout("move2(tlayer2)",100)
}
else{
tlayer2.top=scrollerheight
tlayer2.document.write(messages[i])
tlayer2.document.close()
if (i==messages.length-1)
i=0
else
i++
}
}

function move3(whichdiv){
tdiv=eval(whichdiv)
if (tdiv.style.pixelTop>0&&tdiv.style.pixelTop<=5){
tdiv.style.pixelTop=0
setTimeout("move3(tdiv)",3000)
setTimeout("move4(second2)",3000)
return
}
if (tdiv.style.pixelTop>=tdiv.offsetHeight*-1){
tdiv.style.pixelTop-=5
setTimeout("move3(tdiv)",100)
}
else{
tdiv.style.pixelTop=scrollerheight
tdiv.innerHTML=messages[i]
if (i==messages.length-1)
i=0
else
i++
}
}

function move4(whichdiv){
tdiv2=eval(whichdiv)
if (tdiv2.style.pixelTop>0&&tdiv2.style.pixelTop<=5){
tdiv2.style.pixelTop=0
setTimeout("move4(tdiv2)",3000)
setTimeout("move3(first2)",3000)
return
}
if (tdiv2.style.pixelTop>=tdiv2.offsetHeight*-1){
tdiv2.style.pixelTop-=5
setTimeout("move4(second2)",100)
}
else{
tdiv2.style.pixelTop=scrollerheight
tdiv2.innerHTML=messages[i]
if (i==messages.length-1)
i=0
else
i++
}
}

function startscroll(){
if (document.all){
move3(first2)
second2.style.top=scrollerheight
second2.style.visibility='visible'
}
else if (document.layers){
document.main.visibility='show'
move1(document.main.document.first)
document.main.document.second.top=scrollerheight+5
document.main.document.second.visibility='show'
}
}

window.onload=startscroll

