Hello, you have, you can change each background by the day of the week:
Script code:
<script type="text/javascript"><!--
var imlocation = "Images/";
function ImageArray (n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i] = ' '
}
}
image = new ImageArray(7);
image[0] = 'sunday.PNG';
image[1] = 'monday.PNG';
image[2] = 'tuesday.PNG';
image[3] = 'wednesday.PNG';
image[4] = 'thursday.PNG';
image[5] = 'friday.PNG';
image[6] = 'saturday.PNG';
var currentdate = new Date();
var imagenumber = currentdate.getDay();
document.write('<img src="' + imlocation + image[imagenumber] + '">');
</script>
Create a folder named Images
and add the images with each name of the week, you can change the names to Portuguese.