//configure the below five variables to change the style of the scroller
var scrollerwidth='137px'
var scrollerheight='138px'
var scrollerbgcolor=''
//set below to '' if you don't wish to use a background image
var scrollerbackground=''

//configure the below variable to change the contents of the scroller
var messages=new Array()
messages[0]="<font face='Arial'>Fantastic! The man is a genius when it comes to real estate. Leon has always provided me with results! I’m surprised he can’t walk on water.<br><br> <b>Mable Hosford</b><br> <font color='#4F7A00'> Morro Bay CA</font></font>"
messages[1]="<font face='Arial'>Your help with the tenants and the fix up prior to the sale was extremely helpful and kind. Thanks again for an excellent job.<br><br> <b>Ken &amp; Robert Watson</b><br> <font color='#4F7A00'>Los Osos CA</font></font>"
messages[2]="<font face='Arial'>There aren't words to describe our deep appreciation for your patience, kindness, and professionalism. We will highly recommend you to all of our friends.<br><br> <b>Stan &amp; Tammy Gomes</b></font>"
messages[3]="<font face='Arial'>You really got us through some rough times- you're excellent in dealing with all types of people. <br><br> <b>Jan &amp; Jim Whiteley</b></font>"
messages[4]="<font face='Arial'>Bay Osos is a one stop shop! I bought a home, they rent it out, and they even store my excess belongings in thier storage center.<br><br> <b>Michael Campbell</b><br> <font color='#4F7A00'>Morro Bay, CA</font></font>"
messages[5]="<font face='Arial'>When I need buy or sell property, there is only one person I fully trust, and that's Leon Van Beurden.<br><br> <b>Rich Creal</b><br> <font color='#4F7A00'>Los Osos CA</font></font>"
messages[6]="<font face='Arial'>If you want to know what's going on in Central Coast Real Estate, give Leon a call.<br><br> <b>Keith Baxter</b><br> <font color='#4F7A00'>Atascasdero CA</font></font>"
messages[7]="<font face='Arial'>What drew me to Bay Osos Brokers was the fact that they are life-time residents of Los Osos and know the area better than anyone.<br><br> <b>Jeff Greenfield</b><br> <font color='#4F7A00'>Los Angeles CA</font></font>"


var ie=document.all
var dom=document.getElementById

if (messages.length>2)
i=2
else
i=0

function move1(whichlayer){
tlayer=eval(whichlayer)
if (tlayer.top>0&&tlayer.top<=5){
tlayer.top=0
setTimeout("move1(tlayer)",5000)
setTimeout("move2(document.main.document.second)",5000)
return
}
if (tlayer.top>=tlayer.document.height*-1){
tlayer.top-=5
setTimeout("move1(tlayer)",50)
}
else{
tlayer.top=parseInt(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)",5000)
setTimeout("move1(document.main.document.first)",5000)
return
}
if (tlayer2.top>=tlayer2.document.height*-1){
tlayer2.top-=5
setTimeout("move2(tlayer2)",50)
}
else{
tlayer2.top=parseInt(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 (parseInt(tdiv.style.top)>0&&parseInt(tdiv.style.top)<=5){
tdiv.style.top=0+"px"
setTimeout("move3(tdiv)",5000)
setTimeout("move4(second2_obj)",5000)
return
}
if (parseInt(tdiv.style.top)>=tdiv.offsetHeight*-1){
tdiv.style.top=parseInt(tdiv.style.top)-5+"px"
setTimeout("move3(tdiv)",50)
}
else{
tdiv.style.top=parseInt(scrollerheight)
tdiv.innerHTML=messages[i]
if (i==messages.length-1)
i=0
else
i++
}
}

function move4(whichdiv){
tdiv2=eval(whichdiv)
if (parseInt(tdiv2.style.top)>0&&parseInt(tdiv2.style.top)<=5){
tdiv2.style.top=0+"px"
setTimeout("move4(tdiv2)",5000)
setTimeout("move3(first2_obj)",5000)
return
}
if (parseInt(tdiv2.style.top)>=tdiv2.offsetHeight*-1){
tdiv2.style.top=parseInt(tdiv2.style.top)-5+"px"
setTimeout("move4(second2_obj)",50)
}
else{
tdiv2.style.top=parseInt(scrollerheight)
tdiv2.innerHTML=messages[i]
if (i==messages.length-1)
i=0
else
i++
}
}

function startscroll(){
if (ie||dom){
first2_obj=ie? first2 : document.getElementById("first2")
second2_obj=ie? second2 : document.getElementById("second2")
move3(first2_obj)
second2_obj.style.top=scrollerheight
second2_obj.style.visibility='visible'
}
else if (document.layers){
document.main.visibility='show'
move1(document.main.document.first)
document.main.document.second.top=parseInt(scrollerheight)+5
document.main.document.second.visibility='show'
}
}

if (document.layers)
document.write(messages[0])

if (document.layers)
document.write(messages[dyndetermine=(messages.length==1)? 0 : 1])



