Date.prototype.getDOY = function() {
var onejan = new Date(this.getFullYear(),0,1);
return Math.ceil((this - onejan) / 86400000);
} 
var today = new Date();
var daynum = today.getDOY();

if (daynum <9) {document.write("Allison Clarke");}
else if (daynum <16) {document.write("Gerald & Eric");}
else if (daynum <23) {document.write("Howard Speed");}
else if (daynum <30) {document.write("Beryl Norris");}
else if (daynum <37) {document.write("David Pinch");}
else if (daynum <44) {document.write("Mark Smith");}
else if (daynum <51) {document.write("Julian Crump");}
else if (daynum <58) {document.write("Paul Richmond");}
else if (daynum <65) {document.write("Bill Mennell");}
else if (daynum <72) {document.write("Pat & Simon Cemm");}
else if (daynum <79) {document.write("Andrew Farrar");}
else if (daynum <86) {document.write("Linda Gardom");}
else if (daynum <93) {document.write("Karan Boulton");}
else if (daynum <100) {document.write("Bill Ollerhead");}
else if (daynum <107) {document.write("Pamela Hayward");}
else if (daynum <114) {document.write("Monty Havelock");}
else if (daynum <121) {document.write("Linda Sheppard");}
else if (daynum <128) {document.write("Maggie Carrington");}
else if (daynum <135) {document.write("Angela McAdam");}
else if (daynum <142) {document.write("Coral Oxley & Janet Bird");}
else if (daynum <149) {document.write("John Wattam");}
else if (daynum <156) {document.write("Liz Ashworth");}
else if (daynum <163) {document.write("Karen Rhodes");}
else if (daynum <170) {document.write("Wendy Maddock");}
else if (daynum <177) {document.write("John Downes");}
else if (daynum <184) {document.write("Pat Campbell");}
else if (daynum <191) {document.write("David Pinch");}
else if (daynum <198) {document.write("John Brett &<br>Bryan Gibson");}
else if (daynum <205) {document.write("Bill Mennell");}
else if (daynum <212) {document.write("Linda Sheppard");}
else if (daynum <219) {document.write("Gene & Luke Fletcher");}
else if (daynum <226) {document.write("Annette Lake");}
else if (daynum <233) {document.write("Christine Packer");}
else if (daynum <240) {document.write("Jackie Kershaw");}
else if (daynum <247) {document.write("Stewart Robertson");}
else if (daynum <254) {document.write("Jean Crilley");}
else if (daynum <261) {document.write("Pat & Simon Cemm");}
else if (daynum <268) {document.write("Howard Speed");}
else if (daynum <275) {document.write("Paul Richmond");}
else if (daynum <282) {document.write("Marilyn Parkin");}
else if (daynum <289) {document.write("Sheila Swales");}
else if (daynum <296) {document.write("Jenny Peacock, OSNU");}
else if (daynum <303) {document.write("Andrew Farrar");}
else if (daynum <310) {document.write("Bill Ollerhead");}
else if (daynum <317) {document.write("Alison Clarke");}
else if (daynum <324) {document.write("Linda Gardom");}
else if (daynum <331) {document.write("Beryl Norris");}
else if (daynum <338) {document.write("Julian Crump");}
else if (daynum <345) {document.write("Gerald O'Hara & Eric Cargill");}
else if (daynum <352) {document.write("Carols and Social Evening");}
else  {document.write("Peace Circle");}



