// JavaScript Document
var testimonial_array = new Array();
testimonial_array[0] = ["We love the work you do.","Faye and Bob Satterthwaite"];
testimonial_array[1] = ["The design and installation we received from Green Leaf Gardens was perfect in every way.","Gloria Knuckles"];
testimonial_array[2] = ["Everything you’ve done has thrilled us.","Taffy Williams"];
testimonial_array[3] = ["Very pleased.","R.W.Woodhouse"];
testimonial_array[4] = ["Very pleased and looking forward to the seasonal changes.","Patricia Marais"];
testimonial_array[5] = ["We know you'd be pleased to know how many people have complemented us on the new landscape.","Bob Hedtzel"];
testimonial_array[6] = ["You really know what you are doing.","Bob Waldrop"];
function getRandom(total){
var ranNum = Math.floor(Math.random()*total);
return ranNum;
}
function chooseRandomQuote(){
var arrayLength = testimonial_array.length;
var randomNum = getRandom(arrayLength);
return testimonial_array[randomNum];
}
function writeRandom(){
var randomQuote = chooseRandomQuote();
var beginTag = "";
var quoteTags = randomQuote[0];
var middleTag = "
";
var sigTag = randomQuote[1];
var endTag = "";
document.write(beginTag + quoteTags + middleTag + sigTag + endTag);
}