var quote = new Array();

quote[0] = new Array();
quote[0][0] = "For such a complicated photo mosaic, photofocus made it really, really easy.";
quote[0][1] = "Brent";
quote[0][2] = "Perth, WA.";

quote[1] = new Array();
quote[1][0] = "We.ve got a wedding mosaic in our house now and every time we have someone around, they.ll spend ages inspecting it, asking heaps of questions about our ceremony.";
quote[1][1] = "Melissa";
quote[1][2] = "Perth, WA.";

quote[2] = new Array();
quote[2][0] = "For our son's fourth birthday, we got photofocus to make us a mosaic from all the photos we've got since he was born. We'll have this spectacular image for life now, and our son loves pointing out our pet dog in the pictures";
quote[2][1] = "Robert";
quote[2][2] = "Willetton, WA.";

quote[3] = new Array();
quote[3][0] = "We got photofocus to make us an extra-extra large mosaic which we have in the library at the school, where each student paid a tiny amount to have their photo included. We managed to raise a lot of money and whenever the students come into the library, they always spot themselves out to friends"; 
quote[3][1] = "Judy";
quote[3][2] = "Scarborough, WA.";

quote[4] = new Array();
quote[4][0] = "Our Grandma recently passed away, and we had the idea of honouring her with a photo mosaic. We collected images from her life off of all our relatives, contacted photofocus, and they dealt with the project quickly and sensitively. We had the mosaic in time for the funeral, which was inspected by the whole family who laughed and cried over all the memories in the different images";
quote[4][1] = "Terri";
quote[4][2] = "Bentley, WA.";

quote[5] = new Array();
quote[5][0] = "I wanted something different and creative for my girlfriends birthday, and in the 5 years we've been together, I thought the best way for me to do to show how much I love her is too put all our memorys into one big photo, the expression on her face was priceless! Its one of a kind";
quote[5][1] = "Damon";
quote[5][2] = "Stirling, WA";


var random = Math.floor(Math.random()*quote.length);

					document.write("<p>" + quote[random][0] + "</p>");
					document.write("<p class='name'>" + quote[random][1] + "</p>");
					document.write("<p class='loc'>" + quote[random][2] + "</p>");
