// JavaScript Document

// JavaScript Document
//<![CDATA[
var quote=new Array();
  quote[0]='I love the ladybug shower invites and the matching thank you cards! Your website was super easy to go through...  Erin from Moncks Corner, SC.  <a href="../Testimonials_ep_50-1.html">Click</a> to read more.';
  quote[1]='We have used Fun and Sassy Designs for all of our daughter\'s birthday invitations and we\'ve LOVED them!... Samantha from El Dorado Hills, CA.  <a href="../Testimonials_ep_50-1.html">Click</a> to read more.';
  quote[2]='Ordering from Fun and Sassy Designs was a great experience.... Elizabeth from Jacksonville, FL.  <a href="../Testimonials_ep_50-1.html">Click</a> to read more.';
  

var speed=4000;    /*this is the time in milliseconds adjust to suit*/
var q=0;

function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);
   
 //]]>
