// rotate testimonials in header	  
quotes = new Array(8);
authors = new Array(8);
quotes[0] = "I wish I could write as mysterious as a cat";
authors[0] =  "Edgar Allan Poe";
quotes[1] = "There are no ordinary cats";
authors[1] =  "Colette";
quotes[2] = "What greater gift than the love of a cat?";
authors[2] =  "Charles Dickens";
quotes[3] = "In a cat's world, all things belong to cats";
authors[3] =  "English Proverb";
quotes[4] = "It's really the cat's house--we just pay the mortgage.";
authors[4] =  "Unknown";
quotes[5] = "The smallest feline is a masterpiece";
authors[5] =  "Leonardo Da Vinci";
quotes[6] = "It is a great honor when cats allow us to love them";
authors[6] =  "Celia Peterson";
quotes[7] = "Time spent with cats is never wasted";
authors[7] =  "Colette";
//calculate a random index
index = Math.floor(Math.random() * quotes.length);
