// JavaScript Document
<!--

function showQuote(){

quote = new Array();
quote[0] = "\"I can't believe it. You made it so easy...and it all happened so fast. I'm so delighted!\"<cite>Tracey Maher</cite>";
quote[1] = "\"I spoke with Gerry at Moneybrain, he found me a new mortgage that released the cash I needed at a lower interest rate - and the lender even paid the legal fees. Fantastic!\"<cite>Michael Walsh</cite>";
quote[2] = "\"Moneybrain talked us through all the options over the phone, found us the cheapest quote, and to top it all they refunded us more than half of the first year's premiums...Nice one!\"<cite>Michael Walsh</cite>";

divclass = new Array();

divclass[0] = "class='mortgages'"
divclass[1] = "class='investment'"
divclass[2] = "class='insurance'"

//returns array
var i = Math.round((quote.length-1)*Math.random())

document.write("<div id='logo_header_home_pic' " + divclass[i] + ">");
document.write("<div id='logo'><img src='images/logo_moneybrain.gif' alt='Moneybrain' class='logo' />");
document.write("<img src='images/logo_tag.gif' alt='Independent Financial Advisors' class='tag' /></div><!-- end logo-->");
document.write( "<blockquote>" + quote[i] + "</blockquote></div>");

}
//done

// -->
