/*********************************************** * Fading Scroller- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ var delay = 9000; //set delay between message change (in miliseconds) var maxsteps=30; // number of steps to take to change from start color to endcolor var stepdelay=40; // time in miliseconds of a single step //**Note: maxsteps*stepdelay will be total time in miliseconds of fading effect var startcolor= new Array(255,255,255); // start color (red, green, blue) var endcolor=new Array(75,75,75); // end color (red, green, blue) var fcontent=new Array(); begintag='
'; //set opening tag, such as font declarations fcontent[0] = '

--"I just wanted to ping you to tell you that our website looks fantastic. I'm really glad we called you to work with us and I really appreciate your patience. Once we let the "designers be the designers" the process went great. Thanks again for your patience after we discovered that our explicit ..

Ryan McDonald


read more...

'; fcontent[1] = '

--"Sitting here stranded in 2 feet of snow so I have time to give you a thumbs up. The two web sites you designed for us to work in tandem are great and doing a fantastic job of handling the individual and quantity orders as well as informing our potential customers."

Steve Darling
darlingmodels.com


read more...

'; fcontent[2] = '

--"Thanks so much for sharing your time and talent in support of my project. My project and my website knowledge was in their infancy when I asked for guidance. Your team continues to prove how valuable of an asset you are to my business. Your advertising insight continues to produce rewarding results..

Jamie Kennington
iHaggle


read more...

'; fcontent[3] = '

--"I have never experienced better service than DoubleDome. If I have a change or technical issue it is always done greased lightning fast. Always within 24 hours or less. Truly amazing. If you want reliability and a true partner for your business I would highly recommend working with them."

David Warren
Constructive Visions


read more...

'; fcontent[4] = '

--"When we were looking for a company to host and support our website, the top priorities were accuracy and timeliness. With DoubleDome, changes to our website are often made within the hour of sending our requests. This has allowed us to keep our website up-to-date so that we can pay more attention t..

Elizabeth Bell, Director of Publications
Ford & Associates


read more...

'; fcontent[5] = '

--"DoubleDome has been a tremendous help to us in , as a new business just starting out. They are responsive to our needs, fast with their turnaround and very skilled at what they do. From initial web design to ongoing website support, DoubleDome makes it easy and painless. We highly recommend them!"

Michael Goodrich, President
Chocolate Pink


read more...

'; fcontent[6] = '

--"We recently engaged DoubleDome to assist us in a major upgrade of our website. We were very pleased with both the execution of this project. Chris Bradley is very professional and brought a lot of very good ideas which we incorporated into our upgrade."

Matt Childs, Director of Business Development
Fineline Technologies


read more...

'; fcontent[7] = '

--

"It's been three years since DoubleDome worked with me in designing my website and I still receive compliments from folks who visit it! Thanks again for my outstanding website. An old friend who had not seen my website before recently wrote me to say not only was my website outstanding, but s..

David Skolsky
Skol Art


read more...

'; fcontent[8] = '

--"DoubleDome makes changes to our website promptly, efficiently, and courteously. We have the input we want in creating and maintaining our site. Jim Clanin is a pleasure to work with."

Nancy Evans Elrod
The Corner Pub


read more...

'; fcontent[9] = '

--"I can never thank you enough for the great work that you did for "us" and your above and beyond-ness, taking time to explain the details is such a rare thing in business and we're truly fortunate to have found you."

Beth White
Soundview Communications


read more...

'; fcontent[10] = '

--"DoubleDome's professionalism, extensive knowledge and creativity all came into play to design a website that makes my unique automotive lighting products available to the world. What started out as a few LEDs, a scratch pad and an idea has turned into a business with clients worldwide thanks to..

David Delaney
LEDVisionz


read more...

'; fcontent[11] = '

--"We appreciate the work you and DoubleDome did in getting our website up and running. We didn't understand the first thing about what goes into web design ( and frankly, didn't want to learn), and you did a first rate job of assessing our needs. You literally built what we imagined in our "M..

Phil LaFave
L.A. Business Communications


read more...

'; fcontent[12] = '

--"Your creative ideas and assistance in all areas of the website design and implementation were great. I especially appreciated the prompt execution of any changes and/or modifications requested by our customers via the e-commerce portion of the website!"

Jeff Beavin
Good Health Publishing


read more...

'; fcontent[13] = '

--"We have been very pleased with the high level of service and expertise you offer. The redesign of our website has allowed for us to expand our current market to include "e-customers". We are confident that our site is a secure place to conduct business, thanks to your commitment to detail."

John S. Lowry, President
Lowry Mortgage Services


read more...

'; fcontent[14] = '

--"DoubleDome Web Technologies is amazing. With their web design, SEO, and Google Adwords knowledge, expertise and creativity they have completely helped me grow my business. Plus, their attention to my needs in a timely manner goes a long way. Can't say enough good things!"

Donnelly Davidson
MagnetDog.com


read more...

'; fcontent[15] = '

--"DoubleDome has made launching our new web site easy and enjoyable. The DoubleDome team never fails to be just a phone call away, what a pleasure to have a knowledgeable person actually pick up the phone to answer questions and offer advise. A+ DoubleDome, good going guys!"

Scott Granholm

The Bulb Man, Inc.


read more...

'; fcontent[16] = '

--"Jim Clanin at DoubleDome is as professional as you get. My needs are always met with quick response. It makes having a website a breeze."

Susie Jean, President

Vest 'N P.D.P., Inc.


read more...

'; fcontent[17] = '

--"...smart, dependable, extremely flexible. Plus DoubleDome's responsiveness to quickly turn things around is amazing. Do these guys ever sleep?"

Bob Barrineau
Barrineau Creative Services


read more...

'; closetag='
'; var fwidth='205px'; //set scroller width var fheight='180px'; //set scroller height var fadelinks=1; //should links inside scroller content also fade like text? 0 for no, 1 for yes. ///No need to edit below this line///////////////// var ie4=document.all&&!document.getElementById; var DOM2=document.getElementById; var faderdelay=0; var index=0; /*Rafael Raposo edited function*/ //function to change content function changecontent() { if(index >= fcontent.length) index = 0; if(DOM2){ document.getElementById("fscroller").style.color="rgb("+startcolor[0]+", "+startcolor[1]+", "+startcolor[2]+")"; document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag; if(fadelinks) linkcolorchange(1); colorfade(1, 15); } else if(ie4) document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag; index++; } // colorfade() partially by Marcio Galli for Netscape Communications. //////////// // Modified by Dynamicdrive.com function linkcolorchange(step){ var obj=document.getElementById("fscroller").getElementsByTagName("A"); if (obj.length>0){ for (i=0;i < obj.length;i++) obj[i].style.color=getstepcolor(step); } } /*Rafael Raposo edited function*/ var fadecounter; function colorfade(step) { if(step<=maxsteps) { document.getElementById("fscroller").style.color=getstepcolor(step); if (fadelinks) linkcolorchange(step); step++; fadecounter=setTimeout("colorfade("+step+")",stepdelay); }else{ clearTimeout(fadecounter); document.getElementById("fscroller").style.color="rgb("+endcolor[0]+", "+endcolor[1]+", "+endcolor[2]+")"; setTimeout("changecontent()", delay); } } /*Rafael Raposo's new function*/ function getstepcolor(step) { var diff var newcolor=new Array(3); for(var i=0;i<3;i++) { diff = (startcolor[i]-endcolor[i]); if(diff > 0) { newcolor[i] = startcolor[i]-(Math.round((diff/maxsteps))*step); } else { newcolor[i] = startcolor[i]+(Math.round((Math.abs(diff)/maxsteps))*step); } } return ("rgb(" + newcolor[0] + ", " + newcolor[1] + ", " + newcolor[2] + ")"); } if (ie4||DOM2) document.write('
'); if (window.addEventListener) window.addEventListener("load", changecontent, false); else if (window.attachEvent) window.attachEvent("onload", changecontent); else if (document.getElementById) window.onload=changecontent;