<!--

//<script language="JavaScript">

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "I think I'm spoiled";
Quotation[1] = "too much to eat";
Quotation[2] = "I am very satisfied here";
Quotation[3] = "staff are all kind and considerate, trying to keep residents happy";
Quotation[4] = "we are so pleased to see my aunt looking so much better and happier";
Quotation[5] = "I really am very happy with everything and the staff are so kind and helpful";
Quotation[6] = "There are always activities in which service users are encouraged to participate";
Quotation[7] = "I visit regularly but staff always inform me of any changes";
Quotation[8] = "caring manager and staff- always made to feel welcome when we visit. It is always clean and excellent food and entertainment provided";
Quotation[9] = "My mother has improved since being there, very good team, its nice to know she is safe and cared about";
Quotation[10] = "I would like to say how much I love the way you look after us";
Quotation[11] = "Meals are very good";
Quotation[12] = "I thinks its tip top. All staff love the people";
Quotation[13] = "I'm very happy with service and attention";
Quotation[14] = "Happy with care & support. If not happy I would speak to...(staff names given)";
Quotation[15] = "I feel at home and comfortable";
Quotation[16] = "The food is good, if you don't like something it is rectified";
Quotation[17] = "I feel well looked after";
Quotation[18] = "I am very satisfied with the care, the food and the help I get";

// ======================================
// 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();



//</script>

//-->

