Código HTML:
<html> <head> <script> function cargarImagen(){ ahora=new Date(); hora=ahora.getHours(); imagen="img/"+hora+".jpg"; document.images["reloj"].src=imagen; } </script> <title>Carga Imagen Por Hora</title> </head> <body onload="cargarImagen()"> <img src="img/1.jpg" name="reloj"> </body> </html>