//CONFIGURE MESSAGES AND VARIABLES
var tickercontents=new Array()
tickercontents[0]='<i>Larry\'s coaching made a significant imprint on my life. He was a consummate professional who had the unique ability to apply sound biblical principles to a corporate environment. Larry engendered trust immediately and allowed me to be vulnerable without fear of judgment. He was compassionate but firm in holding me accountable and asked provocative questions which enabled me to come to my own conclusions. I will never grasp the full impact of Larry\'s coaching because the process itself was transformational. Each coaching session moved me from \'strength to strength\' and \'revelation to revelation.\' Larry\'s coaching was one of the defining moments in my life.</i><br /><br />--Ms. Crystal Clay'

tickercontents[1]='<i>Though I live in Australia and he lives in the U.S., Larry soon became my coach and trusted friend. Through e-mails and phone calls, Larry coached me through some tough issues and led me to a closer relationship with God. Larry understood the trials I was facing. His support was essential in helping me find the path back into God\'s will for my life.</i><br /><br />--Mr. Jeremy Kronk'

tickercontents[2]='<i>Looking at the direction of my consulting business, I desired to be both sensitive to God\'s leading <strong>and</strong> profitable. I called Larry, hoping he could provide both sound business advice and spiritual guidance. His questions and guidance challenged my business plan and marketing strategy. It\'s now two years later, and the changes I made have allowed my business, ministry and family to grow in harmony. In addition to his business and spiritual guidance, Larry has become a caring and responsive friend. If you\'re looking for something that goes beyond traditional business guidance, I highly recommend Larry Julian.</i><br /><br />--Mr. Rene Zamora'

var tickerwidth="230px"
var tickerheight="315px"
var fontcss="font: normal 12px Verdana; color:black"
var tickdelay=10000 //delay btw messages
var highlightspeed=3 //2 pixels at a time.
var highlightcolor="white"
var backdroptextcolor="#E1E1E1"

////Do not edit pass this line////////////////

document.write('<style>#highlighterbg a{color:'+backdroptextcolor+'}</style>')
document.write('<div style="position:relative;left:0px;top:0px; width:'+tickerwidth+'; height:'+tickerheight+';'+fontcss+'">')
document.write('<span id="highlighterbg" style="position:absolute;left:0;top:0;color:'+backdroptextcolor+'; width:'+tickerwidth+'; height:'+tickerheight+';padding: 4px"></span><span id="highlighter" style="position:absolute;left:0;top:0;clip:rect(auto auto auto 0px); background-color:'+highlightcolor+'; width:'+tickerwidth+';height:'+tickerheight+';padding: 4px"></span>')
document.write('</div>')

var currentmessage=0
var clipbottom=1

function changetickercontent(){
msgheight=clipbottom=crosstick.offsetHeight
crosstick.style.clip="rect("+msgheight+"px auto auto 0px)"
crosstickbg.innerHTML=tickercontents[currentmessage]
crosstick.innerHTML=tickercontents[currentmessage]
highlightmsg()
}

function highlightmsg(){
//var msgheight=crosstick.offsetHeight
if (clipbottom>0){
clipbottom-=highlightspeed
crosstick.style.clip="rect("+clipbottom+"px auto auto 0px)"
beginclip=setTimeout("highlightmsg()",20)
}
else{
clipbottom=msgheight
clearTimeout(beginclip)
if (currentmessage==tickercontents.length-1) currentmessage=0
else currentmessage++
setTimeout("changetickercontent()",tickdelay)
}
}

function start_ticking(){
crosstickbg=document.getElementById? document.getElementById("highlighterbg") : document.all.highlighterbg
crosstick=document.getElementById? document.getElementById("highlighter") : document.all.highlighter
crosstickParent=crosstick.parentNode? crosstick.parentNode : crosstick.parentElement
if (parseInt(crosstick.offsetHeight)>0)
crosstickParent.style.height=crosstick.offsetHeight+'px'
else
setTimeout("crosstickParent.style.height=crosstick.offsetHeight+'px'",100) //delay for Mozilla's sake
changetickercontent()
}

if (document.all || document.getElementById)
window.onload=start_ticking