// JavaScript Document
function random_content(){
var content=new Array()

content[1]='<img src="assets/quote1.gif" alt="All the staff are very friendly and my child loves being with them" />'
content[2]='<img src="assets/quote2.gif" alt="The meals are excellent. I purchased a book from the nursery so I can cook them at home."/>'
content[3]='<img src="assets/quote3.gif" alt="A safe, caring and well stimulated enviornment. My child is extremely well looked after."/>'


var ry=Math.floor(Math.random()*content.length)
if (ry==0)
ry=1
document.write(content[ry])
}
random_content()
