qarr = [];qarr[0] = "&quot;Look at that! Right smack in the edge of the rough!&quot;";qarr[1] = "&quot;I can't see, unless the weather changes, the conditions changing dramatically.&quot;";qarr[2] = "&quot;5&ndash;5&ndash;5&ndash;4&ndash;7 &mdash; It's like dialling the code for Tierra del fuego.&quot;";qarr[3] = "&quot;I'm the only Pisces that doesn't like it. Water that is. Vast areas of water and I don't get on.&quot;";qarr[4] = "&quot;If you can imagine a clock face, the wind is coming from about half&ndash;past two.&quot;";qarr[5] = "&quot;I can remember, before you found all sorts around the Open, when the only thing you could buy was a doughnut from a tea shop.&quot;";qarr[6] = "&quot;Looks a bit like Jurassic Park in there&hellip;&quot;";qarr[7] = "&quot;Gosh, what an enormous one for such a little chap&hellip;&quot;";qarr[8] = "&quot;The British are a wonderful race. As soon as the sun comes out, out come the shorts, may be demob issue 1952&hellip; 1945&hellip; it doesn't matter&hellip;&quot;";qarr[9] = "&quot;Oh&hellip;I'm not sure this is the right move.&quot;<div>(Spoken as Jean Van de Velde took out his driver on the 18th tee in the final round of the 1999 Open at Carnoustie.)</div>";qarr[10] = "&quot;In technical terms, he's making a real pig's ear of this hole.&quot;";qarr[11] = "&quot;There aren't many good sixes, but that was a bad six.&quot;";qarr[12] = "&quot;Cor blimey O'Reilly&hellip;&quot;";qarr[13] = "&quot;On the golf course, if you can't be a shining sun, please don't be a dismal cloud.&quot;";qarr[14] = "&quot;Not in those trousers, sir. Not at this club. Try the municipal course.&quot;";qarr[15] = "&quot;I like a bit of rough - who doesn't?&quot;";qarr[16] = "&quot;He used to be fairly indecisive, but now he's not so certain.&quot;";qarr[17] = "&quot;Oh, he's here again. Chloroform, nurse please.&quot;<div>(On hearing a spectator shout: &quot;get in the hole!&quot;)</div>";qarr[18] = "&quot;You couldn't really find two more completely different personalities than these two men, Tom Watson and Brian Barnes: one the complete golf professional and the other the complete professional golfer&hellip;&quot;";qarr[19] = "&quot;Have at thee, Sir Percy!&quot;";qarr[20] = "&quot;One good thing about rain in Scotland &mdash; most of it ends up as Scotch.&quot;";qarr[21] = "&quot;Some of the fans there, fuelled by the local giggle&ndash;juice&hellip;&quot;";qarr[22] = "&quot;It's coming up to four hours which, by modern standards, is almost Linford Christie stuff&hellip;&quot;";qarr[23] = "&quot;Very hard to tell the sex of parrots, you know.&quot;";window.onload = function(){
	var n = 1;
	var qmax = qarr.length;
	var tgt = document.getElementById('quote');

	tgt.innerHTML = qarr[0];
	setInterval(function(){
		tgt.innerHTML = qarr[n++];
		if(n >= qmax) n = 0;
	}, 7500);
};
