var tickercontent=new Array()
tickercontent[0]='<b>"A TRUE business and marketing genius."</b> - <font size="1" weight="normal">Jack Phill</font>'
tickercontent[1]='<b>"Forthill SEO continues to be a valued part of our growth strategy."</b> - <font size="1" weight="normal">Robert Hill</font>'
tickercontent[2]='<b>"I recommend Forthill SEO unreservedly to any business."</b> - <font size="1" weight="normal">Richard Stearns</font>'
tickercontent[3]='<b>"I strongly recommend Forthill SEO to any local business."</b> - <font size="1" weight="normal">Vertigo</font>'
tickercontent[4]='"<b>Forthill SEO DOUBLED our new member SALES within 90 days."</b> - <font size="1" weight="normal">Andrew Ling</font>'
tickercontent[5]='<b>"There is only one company that I would trust with my marketing... Forthill SEO!"</b> - <font size="1" weight="normal">Jonathan Malek</font>'
tickercontent[6]='<b>"Within 60 days he DOUBLED our average store lead!!!"</b> - <font size="1" weight="normal">Aleksey Sanin</font>'
tickercontent[7]='<b>"I recommend Forthill SEO for any stage of market development."</b> - <font size="1" weight="normal">Zoran Bacic</font>'
tickercontent[8]='<b>"I would recommend Forthill SEO as one of today\'s true marketing experts."</b> - <font size="1" weight="normal">Martin Mamo</font>'
tickercontent[9]='<b>"Hire Forthill SEO and customers shall come."</b> - <font size="1" weight="normal">Chris Monsanto</font>'
tickercontent[10]='<b>"Awesome results! Forthill SEO is the real deal."</b> - <font size="1" weight="normal">Lance Gutteridge</font>'
tickercontent[11]='<b>"Forthill SEO improved our conversions almost 100%."</b> - <font size="1" weight="normal">Giuliano Carlini</font>'
tickercontent[12]='<b>"WOW!!!  I wish that I hired Forthill SEO sooner."</b> - <font size="1" weight="normal">Corey Brien</font>'
tickercontent[13]='<b>"Forthill SEO does what he claims to do.  We are very satisfied with the results."</b> - <font size="1" weight="normal">Oliver Zeigermann</font>'
tickercontent[14]='<b>"Forthill SEO is my business hero.  Thank you!"</b> - <font size="1" weight="normal">Arnar Birgisson</font>'
tickercontent[15]='<b>"Using Forthill SEO has helped my new business grow tremendously."</b> - <font size="1" weight="normal">Richard Stearns</font>'
tickercontent[16]='<b>"Forthill SEO has been an asset to me, as well as my partners."</b> - <font size="1" weight="normal">Joe Kraska</font>'
tickercontent[17]='<b>"Forthill SEO handled every aspect of our online marketing initiatives flawlessly."</b> - <font size="1" weight="normal">David Pollak</font>'
tickercontent[18]='<b>"After seeing my business slide down the rankings, Forthill SEO got it back on Page 1 where it belongs!"</b> - <font size="1" weight="normal">Thomas Schumacher</font>'
tickercontent[19]='<b>"Forthill SEO provided my business with prime positioning on Google."</b> - <font size="1" weight="normal">David King</font>'
tickercontent[20]='<b>"I\'m on the first page of Google.  Forthill SEO is my hero!"</b> - <font size="1" weight="normal">Mike Paul</font>'
tickercontent[21]='<b>"We continue to see month to month increase in our unique visitor traffic."</b> - <font size="1" weight="normal">Muzzamil</font>'
tickercontent[22]='<b>"I needed help with my marketing.  Forthill SEO did a great job."</b> - <font size="1" weight="normal">Billy Bernard</font>'
tickercontent[21]='<b>"Forthill SEO has enabled us to have our most successful and profitable quarter in company history."</b> - <font size="1" weight="normal">Matthew Legge</font>'
tickercontent[24]='<b>"If you want more business, you want Forthill SEO."</b> - <font size="1" weight="normal">David R. Krajec</font>'
tickercontent[25]='<b>"I hired Forthill SEO and he cut my advertising in half and doubled my new business."</b> - <font size="1" weight="normal">Adam Hughes</font>'
tickercontent[26]='<b>"The leads generated by Forthill SEO\'s efforts have been of the highest quality."</b> - <font size="1" weight="normal">Suzi</font>'

/***********************************************
* DHTML Ticker script- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

function domticker(content, divId, divClass, delay, fadeornot){
this.content=content
this.tickerid=divId //ID of master ticker div. Message is contained inside first child of ticker div
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over ticker (and pause it if it is)
this.pointer=1
this.opacitystring=(typeof fadeornot!="undefined")? "width: 100%; filter:progid:DXImageTransform.Microsoft.alpha(opacity=100); -moz-opacity: 1" : ""
if (this.opacitystring!="") this.delay+=500 //add 1/2 sec to account for fade effect, if enabled
this.opacitysetting=0.2 //Opacity value when reset. Internal use.
document.write('<div id="'+divId+'" class="'+divClass+'"><div style="'+this.opacitystring+'">'+content[0]+'</div></div>')
var instanceOfTicker=this
setTimeout(function(){instanceOfTicker.initialize()}, delay)
}

domticker.prototype.initialize=function(){
var instanceOfTicker=this
this.contentdiv=document.getElementById(this.tickerid).firstChild //div of inner content that holds the messages
document.getElementById(this.tickerid).onmouseover=function(){instanceOfTicker.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){instanceOfTicker.mouseoverBol=0}
this.rotatemsg()
}

domticker.prototype.rotatemsg=function(){
var instanceOfTicker=this
if (this.mouseoverBol==1) //if mouse is currently over ticker, do nothing (pause it)
setTimeout(function(){instanceOfTicker.rotatemsg()}, 100)
else{
this.fadetransition("reset") //FADE EFFECT- RESET OPACITY
this.contentdiv.innerHTML=this.content[this.pointer]
this.fadetimer1=setInterval(function(){instanceOfTicker.fadetransition('up', 'fadetimer1')}, 100) //FADE EFFECT- PLAY IT
this.pointer=(this.pointer<this.content.length-1)? this.pointer+1 : 0
//var randomnumber=Math.floor(Math.random()*51);
//this.pointer=randomnumber;
setTimeout(function(){instanceOfTicker.rotatemsg()}, this.delay) //update container
}
}

// -------------------------------------------------------------------
// fadetransition()- cross browser fade method for IE5.5+ and Mozilla/Firefox
// -------------------------------------------------------------------

domticker.prototype.fadetransition=function(fadetype, timerid){
var contentdiv=this.contentdiv
if (fadetype=="reset")
this.opacitysetting=0.2
if (contentdiv.filters && contentdiv.filters[0]){
if (typeof contentdiv.filters[0].opacity=="number") //IE6+
contentdiv.filters[0].opacity=this.opacitysetting*100
else //IE 5.5
contentdiv.style.filter="alpha(opacity="+this.opacitysetting*100+")"
}
else if (typeof contentdiv.style.MozOpacity!="undefined" && this.opacitystring!=""){
contentdiv.style.MozOpacity=this.opacitysetting
}
else
this.opacitysetting=1
if (fadetype=="up")
this.opacitysetting+=0.2
if (fadetype=="up" && this.opacitysetting>=1)
clearInterval(this[timerid])
}

