var tickercontent=new Array()
//No need to make modifications above this line.

//--------------------------------------------------------------
//To add additional testimonials to the array use this format:
//tickercontent[next_number_in_index]='Testimonial goes here'
//example:
//tickercontent[0]='Great!'
//tickercontent[1]='Super!'
//You can use HTML tags to format your text. For example, if 
//you want bold text:
//tickercontent[2]='<strong>Fantastic!</strong>'
//Please note that the index of an array always starts at zero.
//--------------------------------------------------------------

//Add testimonial content below.

tickercontent[0]='  I am extremely pleased with the plaque and the terrific service I received from Engravenword. I was able to order a customized plaque of a favorite Bible verse in a version that I chose. Engravenword worked with my request and e-mailed me two examples of what my plaque would look like before I decided to order. When the plaque arrived, I was very touched to see this special verse in a beautiful, very solid wood plaque that I could immediately hang on a wall. What I find so unique about Engravenword is all the choices you are given regarding your plaque: you can choose the verse and Bible version to use, the type of style and any &quot;extras&quot; like borders, leaves etc. I highly recommend Engravenword --you won&#39;t be disappointed!<p />Cathy, CA  '

tickercontent[1]='I have a large extended family who gather together at every opportunity to enjoy potluck meals. We have a traditional grace that we say at each one of these. I had searched high and low for something I could hang in the dining room to display these special words but had no luck, until I found your website. I am pleased to now have a lasting memory of our "generational prayer". The plaque I received was so beautiful; exactly what I wanted!<p /> Angie from Arkansas'

tickercontent[2]='Let us know what you think about our service!<p />'

tickercontent[3]='I received my plaque today and its just beautiful!! I love it!! Thanks you so much. I am so very pleased with your service. I cant express how happy I am with my plaque. I have been looking for this for years. Your work is just amazing!!<p /> Jenn, WA'

tickercontent[4]='I received the plaque and it is very beautiful. Please thank everyone involved. I thank you as well for your close communication with me concerning what I wanted. I am keeping your email because I may want to get something else later on. I hope that is okay. From one part of His body to another. <p /> In Christ, Deen, OK'

//No need to modify below this line

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])
}

