function quotes()
{
//6
var ranNum= Math.round(Math.random() * 6);
if (ranNum == 0){document.write('"they\'re a difficult year group, I\'ve never seen them so attentive'); } // 1
if (ranNum == 1){document.write('"I knew the story but I just had to listen to the end"'); } // 2
if (ranNum == 2){document.write('"Thank you" - young audience member giving a bag of pepper in exchange for the stories'); } // 3
if (ranNum == 3){document.write('"I really enjoyed your stories, I wish I could have heard more"'); } // 4
if (ranNum == 4){document.write('"Thank you I\'ve never heard stories told like that before it was a real pleasure"'); } // 5
if (ranNum == 5){document.write('"that was great, thanks, they loved it"'); } // 6
if (ranNum == 6){document.write('"That was a wonderful story with a powerful message"'); } // 7
}
