
var testimonials = new Array("\"Our new cozy corner is a dream come true. It is the showcase of our library!\"<br/><br/>Helen Huber, Cathedral School for Boys, San Francisco California",
														 "\"The cozy books made our library complete. It is now a beautiful setting for children and books.I would happily recommend your furniture to anyone.\"<br/><br/>Joyce Belanger, Head Royce School, Oakland, California",
														 "\"We just love it! We've even had phone calls asking about it and we told them how wonderful it is.\"<br/><br/>Marsha Nawlin, McArthur School, Pensacola, Florida",
														 "\"We love it! The custodian had no problem at all assembling it, the instructions were great.\"<br/><br/>Elementary School, Illinois",
														 "\"We love, love, love our Big Cozy Books, and the community kids and parents do too.\"<br/><br/>Public Library, San Jose, California",
														 "\"A baby's wet diaper caused quite a stain on the fabric, but we were able to quickly clean it up beautifully.\"<br/><br/>Public Library, Northern California",
														 "\"Someone left footprints on the white vinyl pages, which cleaned up beautifully per the cleaning instructions.\"<br/><br/>Public Library, Ohio ");

var mozilla = false; var ie = false;
if (document.all) { ie = true; }
else if (document.getElementById) { mozilla = true; }

window.onload = function() { rotate_testimonial(); }

function rotate_testimonial() {
  if(document.getElementById("testimonials")) {
		x = Math.round(Math.random() * testimonials.length) - 1;
		if(x < 0) {
			x = 0;
		}
    document.getElementById("testimonials").innerHTML = testimonials[x];
    setTimeout("rotate_testimonial()", 10000);
  }
}

function openShow(album) {
  slideshow = window.open('./slide_show.php?album='+ album,'slideshow','resizable,scrollbars,titlebar');
}
