// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var TestimonialSpeed = 10000;

var Testimonial = new Array(); // don't change this
var TFrom = new Array();


// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.

Testimonial[1]  = "I wanted to write and let you know how much I appreciate your company. I have NEVER had a bad shopping experience with Graber's Kountry Korner. In fact, your company probably provides the best service of any that I have used on the Internet. I recommend you to my friends, and will continue to do so in the future. Thanks for everything!";
Testimonial[2]  = "Your pumpkin bread is \"great\"";
Testimonial[3]  = "The best cinnamon rolls on the market";
Testimonial[4]  = "The cinnamon rolls with the caramel icing are \"delicious.\"";
Testimonial[5]  = "I have been purchasing your \"wonderful\" angel food cakes weekly, they are great.";
Testimonial[6]  = "When in the store, I always pick up donuts for the trip home";
Testimonial[7]  = "It has been a pleasure to enjoy your wonderful angel food cake. We are from the state of Washington and while visiting in Santa Claus IN. we enjoyed your cake for the first time we want to order them online.";
Testimonial[8]  = "See what The Hungry Hoosier has to say, <a href=\"http://scotthutcheson.typepad.com/the_hungry_hoosier/2006/05/grabers_kountry.html\">Click Here</a>";
Testimonial[9]  = "Have a comment for us? <a href=\"http://www.donut-hill.com/comments.php\">Click here</a> to submit it.";
Testimonial[10] = "I just recently purchased some of the Carmel Sweet Rolls and I have never tasted anything so good. The rolls were delicious. I have even gave your website to some of my friends. I was very pleased with those cinnamon rolls and I am looking forward to ordering more real soon. I have also tried the White dinner rolls and they were delicious. Thank you!";
Testimonial[11] = "I just wanted to say that your Cinnamon Sweet Rolls are the best. Kroger is now carrying your rolls and my hips as well. They are oh sooo very good! Thanks much!";
Testimonial[12] = "I love your fluffy sugar cookies. I can't seem to find a good recipe and when I do I sure can't find the icing to match. I love your cookies and have been eating them for over 15 years. My family looks forward to these treats. When I come to S. Indiana we go out of our way to stop by your store. We love to look for your products here in Indianapolis but can never find them consistently anymore. People don't know what they are missing!!";
Testimonial[13] = "Thank you so much for the information and for getting back to me so promptly. I love your product, and I would really like to visit your shop. Our Marsh store only carries the angel food cake, maybe I can ask them to request more items from you. Thanks, again, and best wishes.";

// Specify who the Testimonials above are from.
// The number of From vars must be equal to the number
// of Testimonial vars.
TFrom[1] = "- Lynn Lakewood, Ohio ";
TFrom[2] = "- Lee Stacy, Elwood IN.";
TFrom[3] = "- Kegan Inman, Linton IN.";
TFrom[4] = "- Kathy Colber, Paoli IN.";
TFrom[5] = "- Robert Froelich, Evansville IN.";
TFrom[6] = "- Kegan Inman, Linton IN.";
TFrom[7] = "- Sandra Slrlhaus, Port Orchard, WA.";
TFrom[8] = "- The Hungry Hoosier";
TFrom[9] = "- Management";
TFrom[10] = "- Anonymous";
TFrom[11] = "- Maureen Gronefeld";
TFrom[12] = "- Anonymous";
TFrom[13] = "- Gary, Indianapolis, In.";

// =====================================
// Do not edit anything below this line!
// =====================================

var ttss;
var tjss = 1;
var tpss = Testimonial.length-1;


function runTestimonials(){
  if (document.getElementById) document.getElementById("testimonialtxt").innerHTML = Testimonial[tjss];
  if (document.getElementById) document.getElementById("testimonialfrom").innerHTML = TFrom[tjss];
  tjss = tjss + 1;
  if (tjss > (tpss)) tjss=1;
  ttss = setTimeout('runTestimonials()', TestimonialSpeed);
}
