quotes = new Array(10);
authors = new Array(10);
quotes[0] = "Had a wonderful time thank you";
authors[0] = "Chris Kieran (Sheffield)";
quotes[1] = "Thank you for the excellent room and hospitality at such short notice";
authors[1] = "Donald (Milton Keynes)";
quotes[2] = "Very friendly, clean and tasteful accomodation, excellent breakfast";
authors[2] = "Yvonne Wright (Nottingham)";
quotes[3] = "Lovely people, nice place, nice food good friend's";
authors[3] = "Martin Scofield (Dewsbury)";
quotes[4] = "Very pleasant stay, very hospitable";
authors[4] = "L Rayner (Sheffield)";
quotes[5] = "Breakfast was lovely we all had a good nights sleep. We have your contact details for future reference";
authors[5] = "S Cartledge (Doncaster)";
quotes[6] = "Best B&B ever, clean and hospitable would recommend to anyone";
authors[6] = "Adam Rayford";
quotes[7] = "Very enjoyable, will stay again at my second home";
authors[7] = "Steve Brown (Bulgaria)";
quotes[8] = "Excellent food, decor and best christmas tree i have ever seen";
authors[8] = "John Uttley (Doncaster)";
quotes[9] = "Whether your stay is business or pleasure we offer excellent value for money and a big welcolme";
authors[9] = "Aavoncourt Guesthouse";
quotes[10] = "Come as a guest and leave as a friend";
authors[10] = "Aavoncourt Guesthouse";
//calculate a random index
index = Math.floor(Math.random() * quotes.length);
document.getElementById('testimonials_txt').innerHTML=quotes[index];
document.getElementById('testimonials_name').innerHTML=authors[index];

