// JavaScript Document

//store the quotations in arrays
quotes = new Array(4);
quotes[0] = "<img class='quote' src='images/quotes/amenities/01.gif'>"
quotes[1] = "<img class='quote' src='images/quotes/amenities/02.gif'>"
quotes[2] = "<img class='quote' src='images/quotes/amenities/03.gif'>"
quotes[3] = "<img class='quote' src='images/quotes/amenities/04.gif'>"

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//done