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