function randomQuote()
{
	var num = 0;
	var j = 9;
	var quote = "";
	
	num = Math.floor(Math.random() * j) + 1;
	
	switch (num)
	{
		case 1:
			quote = "\"Thank you so much for letting us stay in your beautiful flat, a great holiday and much more than we hoped for\" - R.Clement (Ottawa, Canada)";
		break
		
		case 2:
			quote = "\"What a great location for a flat, close to all the city centre attractions, yet  very tranquil when one wants some peace, quiet and greenery\" - A.Lowther";
		break
		
		case 3:
			quote = "\"Perfect in every possible way. You thought of everything (umbrella was very useful!) Loved the location and the walk through the park. Hope to return next year.\" - Paula & Ludo";
		break
		
		case 4:
			quote = "\"We had a fabulous stay here. This flat is beautiful, convenient, relaxing and a wonderful surprise- more than we’d hoped for!\" - Winter Family";
		break
		
		case 5:
			quote = "\"Lovely flat, beautifully decorated. In a great position, quiet but only a 10 min stroll into the city centre. A great week in a wonderful city.\" - Richard, Jen and Grace Gibson";
		break
		
		case 6:
			quote = "\"Very beautiful flat, decorated to the highest standard – you have thought of everything! We will be back!!\" - Dave & Emma Power";
		break
		
		case 7:
			quote = "\"Delightful green location. Very central to our needs with a host of local good facilities – Victor Hugo coffee shop a winner!\" - David and Josie Grant";
		break
		
		case 8:
			quote = "\"Had a great long weekend – feeling immediately at home in this comfortable flat. Thank you for the effort you have undertaken to make your guests feel so cosy!\" - Sylvia & Sophia Obermeier";
		break

		default:
			quote = "\"Festivals - What Edinburgh does best!\" - Scottish Tourist Board - Visit Scotland";
		break
		
	}
	
	var replace = document.getElementById("replace");
	replace.firstChild.nodeValue = quote;
}