//CONFIGURE MESSAGES AND VARIABLES
var tickercontents=new Array()
tickercontents[0]='In leadership and in daily life, we often have to make decisions where there is no perfect solution... <i>God is My Coach</i> explains how to develop our God-given gifts so that we can achieve \'clarity in the chaos,\' do the right thing, and find true significance in our lives. Another great book from Larry Julian. <br /><br />-Ken Blanchard<br />Co-author of <i>Lead Like Jesus</i> and<br /><i>The One Minute Entrepreneur&trade;</i>'

tickercontents[1]='Life is full of choices that are difficult to make. How do you know you\'re making the right decisions for you, your family and your business? Be prepared to be encouraged and energized by <i>God Is My Coach.</i> Through this book, Larry offers clarity in the midst of confusion. <br /><br />-Bob Buford<br />Founder, Leadership Network<br />Author, <i>Halftime</i> and <i>Finishing Well</i>'

tickercontents[2]='Larry Julian has done it again by bringing us an inspiring book of gifts in <i>God Is My Coach.</i> he shows us how we can use God\'s gifts to discover our authentic calling and share our gifts with others. His examples will help all of us lead fuller, more spirit-filled lives.<br /><br />-Bill George<br />Author of <i>True North</i><br />Former CEO, Medtronic'

tickercontents[3]='<i>God Is My Coach</i> is a great resource for anyone heading into unknown territory. Whether you\'re seeking a new career, embarking on a new business venture or feeling stuck in your present job and desiring a change, Larry Julian\'s coaching process will help you to face the unknown and move forward with renewed clarity, confidence and conviction.<br /><br />-Ken Melrose<br />Former Chairman and CEO<br />The Toro Company'

tickercontents[4]='<i>God Is My Coach</i> is a marvelous filter for the mentally fatigued. It provides a practical plan to help you cut through the clutter and chaos and allow you to focus on the meaningful. <br /><br />-Brad Anderson<br />Chairman and CEO<br />Best Buy Co. Inc.'

var tickerwidth="230px"
var tickerheight="200px"
var fontcss="font: bold 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

