var quote = new Array();

/* Quotes */
quote[0] = "<p><img src='images/quote1.jpg' width='274' height='120' alt='&quot;A truly insightful look into how a companion animal can affect your life.&quot; Katie Garrot, AWL Qld Marketing Manager'></p>";

quote[1] = "<p><img src='images/quote2.jpg' width='274' height='120' alt='&quot;A thoroughly readable intresting and enjoyable book for all ages ...&quot; Graham Carter, RSPCA Qld'></p>";

quote[2] = "<p><img src='images/quote3.jpg' width='274' height='120' alt='&quot;Embraces the notion of responsible animal care, companionship and compassion.&quot; Graham Carter, RSPCA Qld'></p>";

quote[3] = "<p><img src='images/quote4.jpg' width='274' height='120' alt='&quot;A heart warming story which embraces the notion of responsible animal care...&quot; Graham Carter, RSPCA Qld'></p>";

var total = quote.length;
var showno = Math.floor(Math.random() * total);

function showquote() {
	var strTemp = quote[showno];
	document.write(strTemp);
}

