(function() {
		var comments = [
											"<span class='quotation'>\"An excellent place for a relaxing holiday\"</span><br/>Michael Spruce",
											"<span class='quotation'>\"If heaven was a place on earth this would be it.\"</span><br/>Chris, Mandy and Rachel",
											"<span class='quotation'>\"An excellent place for a relaxing holiday\"</span><br/>Michael Spruce"
									 ];
		var commentIndex = Math.floor(Math.random()*comments.length);
		
		$("#commentLabel").html(comments[commentIndex]);
})();

