/*********************************************** * 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 fcontent=new Array(); fcontent[0]='
"If you want to maximize your website as a sales/marketing tool for your business then David Peters is your guy......
B. Roof
Owner, Business Partner of Polaris
'; fcontent[1]='
"It has been a pleasure working with David. He is a master at what he does. He is very creative in his approach and...
L. Love
President/CEO, Wealth Systems, LLC
'; fcontent[2]='
"David was great to work with because he understood our needs. He was able to make relevan SEO recommendations...
B. Blankenship
'; fcontent[3]='
"David is a subject matter expert on SEO. He has given me many tidbits of advice on how to optimize my website. I...
M. Robertson
President, Small Business Accounting
'; fcontent[4]='
"David is a truly great professional and a pleasure to work with. He is extremely efficient and result oriented. He...
M. Younus
Business Development Manager, FSD Solutions
'; fcontent[5]='
"David and I are currently working together at the Chamber as well as Art & Clay on Main. I would recommend David...
B. Hajost
'; fcontent[6]='
"I\'ve had the pleasure of wokring with David for quite a while now. I can say he has true integrity and honestly...
L. Lawless
Director of Relocation Lending, Real Living Mortgage
'; fcontent[7]='
"David is a talented internet marketing professional who is on top of the latest strategies that can help grow...
S. Fox
Online Marketing, E-Commerce Expert, Author, Speaker, Startup Advisor, Blogger, Podcaster, ScottFox.com
'; fcontent[8]='
"David has been a key ingredient to us here at Sandbox Gahanna. his dedication and expertise helped us transform...
C. Lottridge
'; fcontent[9]='
"David is extremely knowledgeable in the SEO/SEM field. He keeps up-to-date and continues to educate himself and...
C. Svec
Vice President, Marketing, Real Living Inc.
'; fcontent[10]='
"David is an exceptionally talented internet marketing professional. So much so, in fact, that after he provided a...
C. Collins
Owner, Financial Advisor, Collins Financial services Co.
'; fcontent[11]='
"David Peters is a trusted advocate with exceptional talent in SEO and related fields. David is personable,...
A. Derstine
VOS™
'; fcontent[12]='
"David and the Social Path Media team are invaluable! To all you micro- and small business owners the dreaded social...
I. Gonzaga
Ribbon Gift of Choice
'; fcontent[13]='
"Despite being a College Repulican and President of competing company, I must recommend David without pause as he...
R. Baur
Chief Marketing Officer Ryanomics Marketing (business partner),
Columbus Collective
'; var delay = 6000; //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(59,59,59); // end color (red, green, blue) begintag='
'; closetag='
'; var fwidth='98%'; //set scroller width var fheight='100%'; //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 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