var index = 0; var quotes = [ // ['I have worked with many Civil Engineering consultants over the years, ranging from local firms to large national firms, and have found Helms to consistently rank among the top, both in quality of work and cost effectiveness.','-Robin Bobzien, P.E.
Public Works Director
City of Aberdeen, SD'], // ['Working with this firm for the last 23 years has been a great benefit to our airport.','-David Osborn, Transportation Director
Aberdeen Regional Airport'], // ['Helms and Associates is extremely competent and well versed in all of the Advisory Circulars and especially the Airport Design Advisory Circulars.','-Tim McGannon, P.E.
Director of Public Works
City of Mitchell, SD'], // ['I’ve always found Terry Helms, and Helms and Associates to be professional, extremely knowledgeable, always available for consultation services, prompt with responses and above all, I can’t think of a project that came in over budget.','-Charles A. Benson
Board Chairman
Aberdeen Regional Airport'], // ['They are first class in providing environmental, designing, bidding and managing the construction of the airport project. All members of their team are professional and go the extra mile.','-Edward Eller
Board Chairman
Onida Airport'] ]; function swapquote() { index++; if ( index == quotes.length ) index = 0; var box = $('homesidebox').getElement('.sideboxcontent'); var qchange = new Fx.Tween(box,{link:'chain'}); qchange.start('opacity',0).chain( function() { box.getElement('.quote').innerHTML = quotes[index][0]; box.getElement('.quoteauthor').innerHTML = quotes[index][1]; this.callChain(); }, function() { this.start('opacity',1); }, function() { setTimeout(swapquote,15000); } ); } window.addEvent('domready',function() { //setTimeout(swapquote,8000); });