//configure tickercontents[] to set the messges you wish be displayed (HTML codes accepted)
//Backslash any apostrophes within your text (ie: I\'m the king of the world!)
var tickercontents=new Array()
tickercontents[0]='\"We chose CTL because of their experienced Personnel and Industry Recognition.\" <br>- Client Survey Response'
tickercontents[1]='\"CTL has historically been our service provider and has maintained an excellent product.\" <br>- Client Survey Response'
tickercontents[2]='\"They know our system and standards very well and their response time is great.\" <br>- Client Survey Response'
tickercontents[3]='\"We chose CTL because of their reputation and service.\" <br>- Client Survey Response'
tickercontents[4]='\"We chose CTL because of the Talent of their staff.\" <br>- Client Survey Response'
tickercontents[5]='\"My experience with CTL has been much better than with other firms.\" <br>- Client Survey Response'
tickercontents[6]='\"We chose CTL because of past experience with them, service, and knowledge.\" <br>- Client Survey Response'
tickercontents[7]='\"We chose CTL because of our confidence in their ability to perform the work.\" <br>- Client Survey Response'
tickercontents[8]='\"We initially chose CTL because of pricing...  but after experiencing the service & responsiveness, subsequent selections were based upon these factors.\" <br>- Client Survey Response'
tickercontents[9]='\"We chose CTL because of their local expertise and knowledge, creative problem solving abilities, and reliability.\" <br>- Client Survey Response'
tickercontents[10]='\"We chose CTL because of the quality of products and services and competency of the employees and engineers.\" <br>- Client Survey Response'
tickercontents[11]='\"We chose CTL because they are the best in the business.\" <br>- Client Survey Response'
tickercontents[12]='\"I believe CTL is the best at what they do.\" <br>- Client Survey Response'
tickercontents[13]='\"CTL\'s strengths are attention to detail and commitment to team concept.\" <br>- Client Survey Response'
tickercontents[14]='\"CTL\'s strengths are their experienced personnel and industry recognition.\" <br>- Client Survey Response'
tickercontents[15]='\"CTL\'s strengths are their responsiveness, quality of work, and professionalism.\" <br>- Client Survey Response'
tickercontents[16]='\"CTL is very responsive and always treats our projects with a high level of professionalism.\" <br>- Client Survey Response'
tickercontents[17]='\"We trust in CTL\'s thorough investigations and specifications.\" <br>- Client Survey Response'
tickercontents[18]='\"CTL retains well educated and experienced employees.\" <br>- Client Survey Response'
tickercontents[19]='\"CTL\'s strengths are their responsive service and technical skill.\" <br>- Client Survey Response'
tickercontents[20]='\"CTL worked with us to get the job completed in a timely manner and took the time to talk about problems and solutions.\" <br>- Client Survey Response'
tickercontents[21]='\"CTL has good materials scientists -very knowledgeable about concrete.\" <br>- Client Survey Response'
tickercontents[22]='\"CTL says what they are going to do and they do it.\" <br>- Client Survey Response'
tickercontents[23]='\"CTL\'s strengths are longevity in business (stability), knowledge, technical capability, and quality of personnel.\" <br>- Client Survey Response'
tickercontents[24]= '\"CTL\'s strengths are their technical expertise, local knowledge and experience, prompt service, and creativity.\"<br>- Client Survey Response'
tickercontents[25]= '\"CTL can cover all material testing…they are a full service firm.\"<br>- Client Survey Response'
tickercontents[26]= '\"CTL has an excellent background and history of numerous solutions for various conditions.\"<br>- Client Survey Response'
tickercontents[27]= '\"CTL\'s biggest strength is their knowledge of the local industry.\"<br>- Client Survey Response'
tickercontents[28]= '\"CTL is very strong in all areas. They are always willing to solve problems and work out issues.\"<br>- Client Survey Response'
tickercontents[29]= '\"CTL | Thompson is the most respected firm in Denver\"<br>- Client Survey Response'
tickercontents[30]= '\"CTL employees are competent and responsive.\"<br>- Client Survey Response'
tickercontents[31]= '\"I believe CTL | Thompson is the best there is in their field.\"<br>- Client Survey Response'
tickercontents[32]= '\"We greatly appreciate CTL\'s assistance on many difficult projects over the years.\"<br>- Client Survey Response'
tickercontents[33]= '\"Having the same people to work with over the last 5 years has been great.  I appreciate the time taken to help get the project completed.\"<br>- Client Survey Response'
tickercontents[34]= '\"In general I have more respect for CTL | Thompson than any of their competitors.\"<br>- Client Survey Response'
tickercontents[35]= '\"I have had a 25 year working relationship with CTL and use them exclusively on my projects.\"<br>- Client Survey Response'
tickercontents[36]= '\"I have the utmost respect for the professionals that make up CTL | Thompson.\"<br>- Client Survey Response'
tickercontents[37]= '\"We really appreciate CTL\'s professionalism and friendliness as we solve problems on projects together and their willingness to share their expertise.\"<br>- Client Survey Response'
tickercontents[38]= '\"It has been great working with CTL for the past several years.  The people are very friendly and competent and always willing to help with any request.\"<br>- Client Survey Response'
tickercontents[39]= '\"The CTL | Thompson name is still well recognized and respected in the construction industry. Of all testing agencies that I\'ve done business with, CTL is by far my favorite. They have integrity and great proficiency.\"<br>- Client Survey Response'

var persistlastviewedmsg=1 //should messages' order persist after users navigate away (1=yes, 0=no)?
var persistmsgbehavior="onload" //set to "onload" or "onclick".

//configure the below variable to determine the delay between ticking of messages (in miliseconds):
var tickdelay=15000

////Do not edit pass this line////////////////

var divonclick=(persistlastviewedmsg && persistmsgbehavior=="onclick")? 'onClick="savelastmsg()" ' : ''
var currentmessage=0

function changetickercontent(){
if (crosstick.filters && crosstick.filters.length>0)
crosstick.filters[0].Apply()
crosstick.innerHTML=tickercontents[currentmessage]
if (crosstick.filters && crosstick.filters.length>0)
crosstick.filters[0].Play()
currentmessage=(currentmessage==tickercontents.length-1)? currentmessage=0 : currentmessage+1
var filterduration=(crosstick.filters&&crosstick.filters.length>0)? crosstick.filters[0].duration*1000 : 0
setTimeout("changetickercontent()",tickdelay+filterduration)
}

function beginticker(){
if (persistlastviewedmsg && get_cookie("lastmsgnum")!="")
revivelastmsg()
crosstick=document.getElementById? document.getElementById("memoryticker") : document.all.memoryticker
changetickercontent()
}

function get_cookie(Name) {
var search = Name + "="
var returnvalue = ""
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset)
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function savelastmsg(){
document.cookie="lastmsgnum="+currentmessage
}

function revivelastmsg(){
currentmessage=parseInt(get_cookie("lastmsgnum"))
currentmessage=(currentmessage==0)? tickercontents.length-1 : currentmessage-1
}

if (persistlastviewedmsg && persistmsgbehavior=="onload")
window.onunload=savelastmsg

if (document.all||document.getElementById)
document.write('<div id="memoryticker" '+divonclick+'></div>')
if (window.addEventListener)
window.addEventListener("load", beginticker, false)
else if (window.attachEvent)
window.attachEvent("onload", beginticker)
else if (document.all || document.getElementById)
window.onload=beginticker