// JavaScript Document

var testimonials = new Array("<b>\"I came specifically to pickup the Tres Classique, Lemon Splash Balsamic Vinegar for myself and my neighbors.\"</b><br/><br/>Julie<br/>Del Mar Festival",
														 "<b>\"I love using the Oregeno White Balsamic on our Caprese Salad and sliced tomatoes!\"</b><br/><br/>Amy<br/>Ponoma, CA",
														 "<b>\"The Navarro Ridge Orange Poppy on Salmon is FANTASTIC, it carmelizes! \"</b><br/><br/>Kathy<br/>Hillsbourgh, CA",
													   "<b>\"I bought the recipe gift box as a gift and ended up keeping the box because it is so beautiful! \"</b><br/><br/>Lisa<br/>Las Vegas, CA",
														 "<b>\"Since I joined the club, it\'s so convenient. I never run out of my favorite Lemon Splash. \"</b><br/><br/>Shelley<br/>Walnut Creek, CA",
														 "<b>\"When I barbeque, I brush the shrimp with the Blood Orange Splash. It adds tremendious flavor!\</b><br/><br/>Dan<br/>Fremont, CA",
														 "<b>\"The Cassis Balsamic with our own olive oil & it was the best bread dipping we\'ve ever tried.\"</b><br/><br/>Susan<br/>San Francisco, CA");

var mozilla = false; var ie = false;
if (document.all) { ie = true; }
else if (document.getElementById) { mozilla = true; }
var oldonload = ( typeof window.onload == 'function' ) ? window.onload : function(){};
window.onload = function() { rotate_testimonial(); }

function rotate_testimonial() {
  if(document.getElementById("element_12301")) {
		x = Math.round(Math.random() * testimonials.length) - 1;
		if(x < 0) {
			x = 0;
		}
    document.getElementById("element_12301").innerHTML = testimonials[x];
    setTimeout("rotate_testimonial()", 14000);
  }
  
  oldonload();
}


