Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<script type="text/javascript">
(function(){
var ims=['morning.jpg', 'afternoon.jpg', 'evening.jpg'];
var d=new Date(), h=d.getHours(), m=h*60+d.getMinutes();
var im_num=m>=7*60&&m<12*60? 0 : m>=12*60&&m<18*60+30? 1 : 2;
document.write('<img src="'+ims[im_num]+'">');
})();
</script>
</body>
</html>
Bookmarks