// This file contains the quotes: add as many as you like, contained within single quotes
// characters, and seperated by commas (see below for examples). Remember; you can't use
// single quote characters (') within each quote - instead, use an escaped-single-quote
// (\') [a quote with a slash in front of it], which will be translated to a single-quote
// character when the script runs.

function randomQuote() {
	quotes = new Array(
		'Good quality removalists have a reputation for booking out early and often they are just unavailable for the day you need, so in the panic of making sure you get someone, you can choose the wrong operator at the wrong price.',
		'Often in the rush of moving, we forget paying attention to the little things. When researching your moving options, you need plenty of time to get quotes for a variety of removalists. Check out how you can save money by being prepared!',
		'Often in the rush of moving, we forget paying attention to the little things. When researching your moving options, you need plenty of time to get quotes for a variety of removalists. Check out how you can save money by being prepared!',
        'One of the top mistakes made by people who are moving is not researching enough information about the company they want to use.',
		'Start researching your options about 4 weeks out for a local move and 6-8 weeks out for an interstate move. This will give you enough time to research your options and still be able to book the date you want!'
	);
	
	return quotes[Math.floor(Math.random()*quotes.length)];
}

document.write(randomQuote());