<!-- 

	var qot = [
		["&quot;For once you have tasted flight you will walk the earth with your eyes turned skywards, for there you have been and there you will long to return.&quot;","- Leonardo Da Vinci"],
		["&quot;Science, Freedom, Beauty, Adventure... aviation offers it all..&quot;","- Charles Lindberg"],
		["&quot;The exhilaration of flying is too keen, the pleasure too great, for it to be neglected as a sport.&quot;","- Orville Wright"],
		["&quot;I fly because it releases my mind from the tyranny of petty things....&quot;","- Antoine de Saint-Exupéry"],
		["&quot;There's a big difference between a pilot and an aviator. One is a technician; the other is an artist.&quot;","- E. B. Jeppesen"],

	];
		
	function homepageqot() {
		no=Math.floor(5*Math.random());
		//document.write(qot[no]);
		document.write('<p class="quote">' + qot[no][0] + '</p>' + '<p class="byline">' + qot[no][1] + '</p>')
		return true;
	}
	
// -->

