
//store the quotations in arrays
banner = new Array(3);

banner[0] = "<img src='Images/Banners/Banner (5PPS Raining City).png' border='0' usemap='#map'> <map name='Map' id='Map'><area shape='rect' coords='558,212,918,345' href='index.html' /></map>";

banner[1] = "<img src='Images/Banners/Banner (My Friend Kylie).png' border='0' usemap='#map'> <map name='Map' id='Map'><area shape='rect' coords='46,217,403,348' href='index.html' /></map>";

banner[2] = "<img src='Images/Banners/Banner (We Were there title).png' border='0' usemap='#map'> <map name='Map' id='Map'><area shape='rect' coords='175,213,531,344' href='index.html' /></map>";



//calculate a random index
index = Math.floor(Math.random() * banner.length);

//displays the banner
document.write("<DL>\n");
document.write("<DT>" + "" + banner[index] + "\n");
document.write("</DL>\n");

//done

