// Time of Day Image Script
// copyright Stephen Chapman, 20th Jan 2005
// heavily altered by Felix Atagong
function timeOfDayImage() {
var now = new Date;
var timeNow = now.getHours();
var img = null; 
if (timeNow <= 3) {
img = 'aw4.jpg';
} else if (timeNow <=4) {
img = 'aw5.jpg';  
} else if (timeNow <=5) {
img = 'aw6.jpg';  
} else if (timeNow <=9) {
img = 'aw1.jpg';  
} else if (timeNow <= 14) {
img = 'aw2.jpg'; 
} else if (timeNow <= 20) {
img = 'aw3.jpg'; 
} else {
img = 'aw4.jpg'; 
}
document.write('<a href="http://atagong.com/dateariane/default.html"><img class="sog" src="http://atagong.com/dateariane/'+img+'" width="200" height="200" alt="ArianeB 7.0 Walkthroughs" title="ArianeB 7.0 Walktroughs" /></a>');
}
