var d = new Date();
var day = d.getDay();
var hour = d.getHours();
if(day == 0 && 9 < hour){
	window.location.replace('closed.html');
}

