var tickercontent=new Array()
tickercontent[0]='<p>&ldquo;The internet has provided easy access to a lot of commerce in our  society. Most of it is good, a lot is average and some is very bad.  Yours is excellent.&rdquo;<br /> <em>- Cefalu Family Vineyards</em></p>'
tickercontent[1]='<p>&ldquo;Just had to tell you that one of our customers called from  California and said our website is shoulders above any other GPS website  out there! Thank you!!&rdquo;<br /> <em>- Atomic GPS </em></p>'
tickercontent[2]='<p>&ldquo;You did an outstanding job for us and it is greatly appreciated.  Above and beyond what I would have expected when going into this.&rdquo;<br /> <em>- IM2 Consulting</em></p>'
tickercontent[3]='<p>&ldquo;It has been a real pleasure to work with people who are so responsive, prompt and creative.&rdquo;<br /> <em>- Len Consult</em></p>'
tickercontent[4]='<p>&ldquo;I would also like to thank you for your tireless effort,  professionalism, creativity and above all for the timely response you  have been giving us.&rdquo;<br /> <em>- Adtech</em></p>'
tickercontent[5]='<p>&ldquo;Just awesome: You are the best. You can use me as a reference anytime!&rdquo;<br /> <em>- Discover Danville Association</em></p>'
tickercontent[6]='<p>&ldquo;This was the first long-term project we&rsquo;ve worked out without  getting upset with the vendor. You really impressed me personally, and  as a company.&rdquo;<br /> <em>- Davies Computer Solutions</em></p>'
tickercontent[7]='<p>&ldquo;WOW! You have out-done yourself! Thanks so much…. I may have so much business, you&rsquo;ll have to come help me cook!&rdquo;<br /> <em>- Brass Lantern Manor</em></p>'
tickercontent[8]='<p>&ldquo;The website looks great! With the greatest respect for the excellent work that you and your team do, thank you.&rdquo;<br /> <em>- Allessandrea World Enterprises</em></p>'
tickercontent[9]='<p>&ldquo;All the work was extremely professional and completed within a timely manner.&rdquo;<br /> <em>- Bright Future Learning Center</em></p>'

/***********************************************
* 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
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])
}
