var num_of_quotes = 15
quotes = Math.floor (num_of_quotes * Math.random());


if (quotes==0) {
title="The M family, Stockton-on-Tees";
body="A really lovely holiday, excellent weather, loads to see and do, cosy cottage to return to after an action packed day. Thank you for the friendly welcome and hospitality.";
}

if (quotes==1) {
title="R (aged 7)";
body="I have had a lovely week. I liked seeing the lambs best. In the morning I went to see the cows being milked. When we went to the sheep I loved splashing in the mud. I loved staying in the cottage.";
}

if (quotes==2) {
title="A, S & J, Cheshire";
body="Thanks for a truly wonderful week on your brilliant farm. Josh has never enjoyed a holiday so much.";
}

if (quotes==3) {
title="M, S, M & R, Gloucester";
body="What a fantastic family holiday! We will be leaving feeling very relaxed and well rested. Girls saw a calf being born – wonderful. Thank you.";
}

if (quotes==4) {
title="T&W, Bad Driburg, Germany";
body="We had a great holiday with fantastic walks! (Thanks for all the good ideas where to go!) The cottage is lovely.";
}

if (quotes==5) {
title="E&P, Sheffield";
body="Sixth visit, just as good as the first time.";
}

if (quotes==6) {
title="S&J, Midlands";
body="What a lovely place to spend a holiday – great walks, beautiful scenery. Don’t want to go back to work.";
}

if (quotes==7) {
title="T-O Family, Germany";
body="We loved this lovely cottage &  enjoyed to explore the farm & the gorgeous landscape surrounding it. We had a wonderful time here.";
}

if (quotes==8) {
title="MR (aged 9)";
body="Best time ever. Loved the holiday, so many things to do even on rainy days. Sad to go.";
}

if (quotes==9) {
title="E&J, Norfolk";
body="Thank you for the use of your wonderful Victorian piggery – we loved the peacefulness of the location.";
}

if (quotes==10) {
title="G&T, Cotswolds";
body="It has been a perfect place to explore a beautiful part of the world.";
}

if (quotes==11) {
title="J&M";
body="Thank you for our last minute booking. It’s been a lovely peaceful 3 days on your beautiful farm. Such a warm, friendly atmosphere. Just the break we needed.";
}

if (quotes==12) {
title="T&J, Hampshire";
body="Lovely cottage, relaxing, cosy & all that you need & more.";

}
if (quotes==13) {
title="Family B, Milton Keynes";
body="The perfect cutesy cottage in the most stunning location.";
}

if (quotes==14) {
title="SJ, Norwich";
body="A warm welcome & lovely little cottage – very cosy & great for exploring the area.";
}

if (quotes==15) {
title="L&G, Wiltshire";
body="Loved the cottage & roaring fire... very cosy. We were all so relaxed. Thanks for info. on fab places to go. Lovely farm walk too.";
}

function showquote() {
document.write(''+ body +'');
document.write('<p style="margin-right: 10" align="right"><strong>' + title + '</strong><br></p>');
}


showquote(); 
