var mondayimg="http://www.christophercopeman.co.uk/graphics/monday.jpg"
var tuesdayimg="http://www.christophercopeman.co.uk/graphics/tuesday.jpg"
var wednesdayimg="http://www.christophercopeman.co.uk/graphics/wednesday.jpg"
var thursdayimg="http://www.christophercopeman.co.uk/graphics/thursday.jpg"
var fridayimg="http://www.christophercopeman.co.uk/graphics/friday.jpg"
var saturdayimg="http://www.christophercopeman.co.uk/graphics/saturday.jpg"
var sundayimg="http://www.christophercopeman.co.uk/graphics/sunday.jpg"
var mydate=new Date()
var today=mydate.getDay()
if (today==1)
document.write('<img src="'+mondayimg+'">')
else if (today==2)
document.write('<img src="'+tuesdayimg+'">')
else if (today==3)
document.write('<img src="'+wednesdayimg+'">')
else if (today==4)
document.write('<img src="'+thursdayimg+'">')
else if (today==5)
document.write('<img src="'+fridayimg+'">')
else if (today==6)
document.write('<img src="'+saturdayimg+'">')
else
document.write('<img src="'+sundayimg+'">')
