
var d =new Date()
var dHours =d.getHours()



function goPage(){
if (d.getHours() < 6) {
this.location.href="h_home_pm.html";
}
else if (d.getHours() < 18) {
this.location.href="h_home_am.html";
}
else {
this.location.href="h_home_pm.html";
}
}

function checkTime()
{
goPage();
}

