	var quote = new Array();
	maxQuote = 8; // Change this for the number of quotes
	
	//add /delete quotes from the below array - zero base
	quote[0] = "Victoria Harbour covers an area equal to over 5,600 soccer pitches.";
	quote[1] = "The Harbour is about 740 metres wide at its narrowest point.";
	quote[2] = "Water quality in the Harbour is improving. Water in the eastern Harbour improved by 90%, in terms of bacteria content, with the full commissioning of Stage 1 of the Harbour Area Treatment Scheme in December 2001.";
	quote[3] = "While Victoria Harbour is a busy waterway and a beautiful natural asset, it is also home to a variety of fish. The commonest species are rabbitfish, sardine, seabream and croaker. There are also several different types of crab and shrimp.";
	quote[4] = "Seawater extracted from the Harbour for toilet flushing amounts to around 720,000 cubic metres each day.";
	quote[5] = "The deepest point of the Harbour is 42 metres, at Lei Yue Mun.";
	quote[6] = "The Environmental Protection Department monitors water quality at 17 stations around the Harbour.";
	quote[7] = "A fleet of about 70 marine refuse scavenging and collection vessels is deployed on Harbour clean-up operations.";
	
	//do not change below this line - unless you know what you are doing
	r = Math.round(Math.random() * maxQuote - .5);
	document.write(quote[r]);