//store the quotations in arrays
quotes = new Array(6);
authors = new Array(6);
quotes[0] = "Fantastic, ordered yesterday, came today. Brilliant quality A+++";
quotes[1] = "Excellent, recommended!! Really good customer service, thanks!";
quotes[2] = "Recommended! Speedy delivery, excellent packaging and top quality product. Thx";
quotes[3] = "Thanx for the quick delivery, great product, will do business again thanx.";
quotes[4] = "Thanks for another hassle free sale,excellent quality, looks good on the bike.";
quotes[5] = "A beautiful piece of engineering with very fast service. Buy with confidence.";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

function write_quote(){
	document.getElementById('customer_quote').innerHTML = quotes[index];	
}

window.addEventListener?window.addEventListener("load",write_quote,false):window.attachEvent("onload",write_quote);