﻿now = new Date

	if (now.getHours() < 6) {
	   document.write("<img src='images/6.jpg' width='400' height='240'>")
	}
	else if (now.getHours() < 7) {
	   document.write("<img src='images/1.jpg' width='400' height='240'>")
	}
	else if (now.getHours() < 10) {
	   document.write("<img src='images/2.jpg' width='400' height='240'>")
	}
	else if (now.getHours() < 16) {
	   document.write("<img src='images/3.jpg' width='400' height='240'>")
	}
	else if (now.getHours() < 5) {
	   document.write("<img src='images/4.jpg' width='400' height='240'>")
	}
	else if (now.getHours() < 6) {
	   document.write("<img src='images/5.jpg' width='400' height='240'>")
	}
	else {
 document.write("<img src='images/6.jpg'>")
	}
