var mondayimg="home/dp2.jpg"
var tuesdayimg="home/dp3.jpg"
var wednesdayimg="home/dp4.jpg"
var thursdayimg="home/dp5.jpg"
var fridayimg="home/dp6.jpg"
var saturdayimg="home/dp7.jpg"
var sundayimg="home/dp1.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+'">')