//increment quote number by one each time you add a new quote

var num_of_quotes = 10;
quotes = Math.floor (num_of_quotes * Math.random());

//can use any variable inplace of quote and author - these are used as it is initially a random quote script

if (quotes==0) {
quote="Thanks for a very enjoyable and instructive weekend.  We wouldn't have missed any of the sites...";
author="Derek and Ann, Cirencester";
}

if (quotes==1) {
quote="<br>A wonderful trip, we enjoyed every minute.";
author="John and Esther, Edgware";
}

if (quotes==2) {
quote="<br>We both enjoyed the weekend in Ypres very much – an excellent itinerary...";
author="Derek and Vicky, Bedfordshire";
}

if (quotes==3) {
quote="Lived up to our expectations and more.  All very interesting and frequently very moving....";
author="Andrea and Colin, Basingstoke";
}

if (quotes==4) {
quote="Thank you for an excellent trip to Krakow.  It certainly lived up to all of our expectations...";
author="The Walker Family, Haddenham, Buckinghamshire";
}

if (quotes==5) {
quote="Very professionally presented.  The hotel was first class – indeed everything was just right...";
author="Christine, Eastbourne";
}

if (quotes==6) {
quote="Thank you for such a wonderful time in Krakow. We really enjoyed ourselves and can't wait to go back again...";
author="Janet, Nottingham";
}

if (quotes==7) {
quote="Thank you for a very well organised visit – your experience showed!  I have come away wanting to find out more...";
author="Tom, Milton Keynes";
}

if (quotes==8) {
quote="The battlefield sites were superb – very interesting and very moving.  Your understanding of what went on...";
author="Simon and Sharon, Oxford";
}

if (quotes==9) {
quote="Your passion for these sites has enthused us all.  Many thanks for a wonderful few days away from it all...";
author="Laurence and Kate, Reading";
}

document.write(quote);