// JavaScript Document


var Quotation=new Array() // do not change this!

Quotation[0] = "Check the 4 day weather forecast for rain before watering. Your garden might be able to hold out for a couple of extra days if rain is on the way.";
Quotation[1] = "Improve the water absorption of clay soils by digging in liquid or powdered gypsum.";
Quotation[2] = "Understand what sort of plants will grow best in your soil type.";
Quotation[3] = "Install a windbreak around your pool to reduce evaporation caused by wind.";
Quotation[4] = "Turn down the temperature on heated pools and spas. Warmer water will evaporate much quicker than cooler water.";
Quotation[5] = "Turn off any pool fountains, waterfalls, sprays or water slides. Sprayed water will evaporate faster than still water.";
Quotation[6] = "Keep water levels lower to prevent water splashing over the sides.";
Quotation[7] = "Ensure that everyone in your household know the location of your property’s shut off tap and how to turn it off. If a pipe bursts, this can not only save litres of water but also extensive property damage.";
Quotation[8] = "Hot water pipes can be insulated to prevent heat loss, meaning you won’t have to run the water while you wait for it to heat up.";
Quotation[9] = "Your hot water system can develop leaks and drips. Regularly check all pipes and pressure valves to ensure this often hidden away device isn’t a silent water waster.";

Quotation[10] = "Watch out for water wastage in your neighbourhood. Report broken pipes or hydrants.";

Quotation[11] = "Don’t send water from flower vases down the drain – use it to water pot plants or the garden.";
Quotation[12] = "Put the environment ahead of a shiny car…Only wash your car when it is absolutely necessary.";
Quotation[13] = "Don’t keep the hose running while you wash the car. Use a light spray and only use it at the start and end of the wash.";
Quotation[14] = "A bucket of water to clean a car can do just as good a job as a hose and uses much less water.";
Quotation[15] = "Don’t use a water hungry high pressure cleaning device to wash the car.";
Quotation[16] = "Use the dew of cool mornings to water your lawn. To stop dew evaporating, drag a hose across the lawn, this will help the water move from the blades to the soil.";
Quotation[17] = "Water reaches the roots of grass much easier if you aerate your lawn.";
Quotation[18] = "Individually water new plants instead of using a watering system. These plants require water more often but in smaller amounts.";
Quotation[19] = "When planting garden beds, ensure that they are level or slope inwards to stop water running off.";
Quotation[20] = "Use mulch on gardens, it can reduce evaporation by up to 75%.";
Quotation[21] = "Insert a length of pipe or tubing into the ground next to trees and plants. Watering through the tube will get water straight to the roots.";
Quotation[22] = "Deciduous trees are dormant in the winter and may not need watering at all.";
Quotation[23] = "The following trees have large, vigourous root systems that can damage pipes. Try to avoid planting these trees near sewerage and water pipes; Apple, ash, casuarina, figs and ficus, honeysuckle, jacaranda, large gums, maple, oak, pepper tree, poplars, umbrella and willow trees.";
Quotation[24] = "If you’re using terracotta pots, choose pots that are glazed or painted. Applying a sealant before you use an untreated terracotta pot will also reduce water seepage.";
Quotation[25] = "Use peat moss and water crystals in your potting mixture to aid water retention. Remember to replace water crystals every few years.";
Quotation[26] = "A higher water account than expected may be a sign that you have a water leak. Regularly monitor your water accounts and check for anomalies.";
Quotation[27] = "Get a plumber to check your water pressure and your pipes.  Pipes that are not adequate for the velocity and pressure of the water going through them can break and leak.";
Quotation[28] = "Consider installing water pressure reducing valves in your water lines to limit the water pressure and prevent loss of water.";
Quotation[29] = "Turn your water supply off at the boundary when not at the property for any lengthy period of time.";
Quotation[30] = "Use a greywater diverter to capture greywater from the washing machine, shower, laundry and bathroom taps to resue on the garden. However don’t store greywater.";




// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
