var tickercontents = new Array()



tickercontents[0] = 'I think that it is safe to say, these are truly honest guys -- Scott'


tickercontents[1] = '... the best experience we have ever had with any service company anywhere. -- Nancy O. on January 16, 2010'


tickercontents[2] = 'I highly recommend William Marshall of Austin Auditors and his service.  -- Mike L. on October 28, 2010'



tickercontents[3] = 'William with Austin Auditors...is fast, efficient and has a love of customer service that any professional can appreciate. -- Ryan R.on January 19, 2010'


tickercontents[4] = 'We were very satisfied with the energy audit conducted by Austin Auditors. -- Jerele N. on January 24, 2010'


tickercontents[5] = 'Definitely was well worth the price we paid -- James H. on January 5, 2010'


tickercontents[6] = 'I think that it is safe to say, these are truly honest guys. -- Scott on November 12, 2009'

tickercontents[7] = 'Austin Auditors...came recommended by our realtor and I can second that recommendation. -- Caroline A. on November 18, 2009'

tickercontents[8] = 'Would definitely use again and highly recommend. -- Susana C. on November 9, 2009'

tickercontents[9] = 'We would recommend William and Austin Auditors to our friends. -- Jerele N. on January 24, 2010'

tickercontents[10] = 'I would recommend Austin Auditors without reservation for any home energy audit. -- Nancy O. on January 16, 2010'

tickercontents[11] = 'William did a prompt and incredibly thorough evaluation of our home. -- Nancy O. on January 16, 2010'

tickercontents[12] = '...very flexible in accommodating my tight schedule. On sight the job was done quickly, thouroughly, and efficiently. -- Mark B. on October 26, 2009'

tickercontents[13] = 'I can recommend Austin Auditors for any ECAD audit. -- Mark B. on October 26, 2009'

var tickdelay = 8000 //delay btw messages



var highlightspeed = 10 //10 pixels at a time.







////Do not edit pass this line////////////////







var currentmessage = 0



var clipwidth = 0








function changetickercontent() {

		random_num = Math.ceil(Math.random()*13)

    crosstick.style.clip = "rect(0px 0px auto 0px)"



    crosstick.innerHTML = tickercontents[random_num]



    highlightmsg()



}







function highlightmsg() {



    var msgwidth = crosstick.offsetWidth



    if (clipwidth < msgwidth) {



        clipwidth += highlightspeed



        crosstick.style.clip = "rect(0px " + clipwidth + "px auto 0px)"



        beginclip = setTimeout("highlightmsg()", 20)



    }



    else {



        clipwidth = 0



        clearTimeout(beginclip)



        if (currentmessage == tickercontents.length - 1) currentmessage = 0



        else currentmessage++



        setTimeout("changetickercontent()", tickdelay)



    }



}







function start_ticking() {



    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