quoteRotator = {
"i":1,
"quotes" : [
"I did\'nt remember a thing. The cost is minimal and is not inconvenient at all. I have done it twice and is not a big deal.  <span class='quoteauthor'>Bill D</span>",
"Everyone I dealt with was very friendly and professional. My sedation dental work went very well. I do not even remember coming into the office that day.  <span class='quoteauthor'>Ed M</span>",
"Great, I guess, I don’t remember much, but the work looks great!! Thanks! The only thing that hurts now are my pockets! <span class='quoteauthor'>Steve K</span>",
"They really helped me. Thanks. <span class='quoteauthor'>Amie G</span>",
"Your team took great care of me. Sedation is well worth it. I only wish I had done it years before! My fear kept me away far too long!  <span class='quoteauthor'>Sally S</span>",
"Everyone I came in contact with was very nice and made me feel comfortable. It was one of the best experiences I have had. Thank you so much. <span class='quoteauthor'>Sarah A</span>",
"Your staff completely revolutionized the way I feel about dentists. My procedure was painless and I would recommend you highly to any and everyone. <span class='quoteauthor'>Terry M</span>",
"Dr. Weaver explains everything clearly, very professional, while being friendly and caring. I no longer fear pain, just the bill. LOL I have recommended Dr. Weaver to my friends. <span class='quoteauthor'>Mary C</span>",
"I do not remember anything that happened to me on the day of my surgery. This is a good thing. I would refer anyone doing this surgery and dentures to Rivergate Dental Care. <span class='quoteauthor'>Larry H</span>",
"I can’t get numb so being able to have all my dental work done in 1 or 2 visits and feel no pain is wonderful! I am always very happy with the results!<span class='quoteauthor'>Joanna K</span>",
"I highly recommend SEDATION DENTISTRY! It was great and I feel much better about my teeth. It was worh every penny to be unconscious during the whole procedure!! <span class='quoteauthor'>Melinda C</span>",
"They do whatever is needed to make you feel comfortable. They’re gentle and caring! <span class='quoteauthor'>Christi S</span>",
"They took the fear out of going to the dentist. I recommend them strongly. <span class='quoteauthor'>David C</span>",
"I didn’t feel a thing!!! <span class='quoteauthor'>Lorie M</span>",
"Will highly recommend Dr. Weaver and his staff as a great provider! <span class='quoteauthor'>Gloria S</span>",
"Dr. Weaver and his incredible team were friendly and understanding. Sedation made me feel relaxed and I was able to get a lot of work done at one time. <span class='quoteauthor'>Gayle G</span>",
"I don’t even remember being there. I had two crowns, root canals, and several fillings. I didn’t feel anything. It was a very pleasant experience. <span class='quoteauthor'>Aaron D</span>",
"It was great, not good when comes to dental work. I don’t remember anything at all. The pain was minimum. I would and will do it again when I have more work done. <span class='quoteauthor'>Gladys W</span>",
],
  "num_quotes" : 18,
  "opac":100,
  "showFading":1,
  "fadeDuration":10,
  "delay":10,
  "quotesInit":function(){
  	if(this.num_quotes>0){
  	document.getElementById('quoterotator').style.opacity=0.0
  	document.getElementById('quoterotator').style.filter="alpha(opacity=0.0)"
  	new Effect.Appear('quoterotator',{duration:this.fadeDuration})
  		document.getElementById('quoterotator').innerHTML=this.quotes[0]
  	}
  	else{
  		document.getElementById('quoterotator').innerHTML="No Quotes Found!!!"
  	}
  	if(this.num_quotes>1){
  		setInterval("quoteRotator.quoteRotate()", (this.fadeDuration + this.delay)*1000)
  	}
  },
  "quoteRotate":function(){
  	document.getElementById('quoterotator').style.opacity=0.0
  	document.getElementById('quoterotator').style.filter="alpha(opacity=0.0)"
  	new Effect.Appear('quoterotator',{duration:this.fadeDuration})
  	document.getElementById('quoterotator').innerHTML=this.quotes[this.i]
  	this.i++
  	if(this.i==this.num_quotes){
  		this.i=0
  	}
  }
  }
