// JavaScript Document
                                               
<!--------------scroll text--------------->
// Scrollers width here (in pixels)
var scrollerwidth="100%"

// Scrollers height here
var scrollerheight="180px"

// Scrollers speed here (larger is faster 1-10)
var scrollerspeed=1



// Scrollers content goes here! Keep all of the message on the same li


var scrollercontent='<div align="justify" class="contentscroll">"It is a pleasure to work with ECT.<br>I honestly feel that your company is one of the few in the market place that hold strong level of  ethics and  integrity"<br><b>CISCO Systems(San Jose, CA).</b><br><br>"ECT has been nice and professional to me. They found a project matching my skills and kept their word as always" <b>-AN, ERP consultant</b> <br><br>“Your success rate at Fossil has not only been the ability to locate a great candidate, but also locate candidate who  will be a long term player. Every candidate that you have placed with us over the past three years still remains at the company. That says a lot!”<br><b> Fossil</b> <br><br>“I have been confident enough to refer your company  to other managers…I understand they have been equally impressed. You should be proud of the good work you are providing <br><b>“IBM Global services</b>(Charlotte, NC)<br><br> “ECT works hard to get us exactly what we require. It is apparent that ECT fosters a culture built upon outstanding customer service.<b>” MCI WorldCom (Cedar Rapids, IA)</b><br><br>“ECT’s knowledge of the needs of IT departments, combined with quality resources, has enabled them to develop the trust IT departments seek when navigating the myriad of consultant service providers.<b>” Bell South</b><br><br> “ECT always understands and responds to our needs amazingly fast; however, we never feel pressured or inconvenienced in any way. I would characterize this firm as Hustle no Hassle<b>” Harris Corporation (Melbourne, FL)</b><br><br>“ECT has been very flexible and understanding in an effort to work within our particular timeframes and budgets. Their knowledge of our specific needs, along with the quality of their resources, has allowed ECT to become a valuable asset to our company.<b>” Capital Group (San Francisco, CA)</b><br><br>“When business priorities change quickly at Walgreen’s, ECT  has been there to help us meet our needs. I highly recommend ECT to other healthcare organizations that have immediate, short-term and permanent placement needs.<br><b>” Walgreen’s (Chicago, IL)</b><br><br>“You and your team made it possible for me to show up and interview prime candidates back-to-back, using my time very efficiently. I have told other fellow managers about the outstanding service I received, and when the need arises, I certainly plan on using you and your team again.<br><b>” Home Depot  (Dallas, TX) </b></div>'

var pauseit=1


// Change nothing below!

scrollerspeed=(document.all)? scrollerspeed : Math.max(1, scrollerspeed-1) //slow speed down by 1 for NS
var copyspeed=scrollerspeed
var iedom=document.all||document.getElementById
var actualheight=''
var cross_scroller, ns_scroller
var pausespeed=(pauseit==0)? copyspeed: 0

function populate(){
if (iedom){
cross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
cross_scroller.innerHTML=scrollercontent
actualheight=cross_scroller.offsetHeight
}
else if (document.layers){
ns_scroller=document.ns_scroller.document.ns_scroller2
ns_scroller.top=parseInt(scrollerheight)+8
ns_scroller.document.write(scrollercontent)
ns_scroller.document.close()
actualheight=ns_scroller.document.height
}
lefttime=setInterval("scrollscroller()",20)
}
window.onload=populate

function scrollscroller(){

if (iedom){
if (parseInt(cross_scroller.style.top)>(actualheight*(-1)+8))
cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px"
else
cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
}
else if (document.layers){
if (ns_scroller.top>(actualheight*(-1)+8))
ns_scroller.top-=copyspeed
else
ns_scroller.top=parseInt(scrollerheight)+8
}
}

if (iedom||document.layers){
with (document){
if (iedom){
write('<div style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed">')
write('<div id="iescroller" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+scrollerwidth+' height='+scrollerheight+' name="ns_scroller">')
write('<layer name="ns_scroller2" width='+scrollerwidth+' height='+scrollerheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed"></layer>')
write('</ilayer>')
}
}
}


   
