

day = new Date()
hours = day.getHours()
if ((hours == 1) || (hours == 2) || (hours == 3) || (hours == 4) || (hours == 5) || (hours == 6) || (hours == 7) || (hours == 8) || (hours == 9) || (hours == 10))
document.write(" GoedeMorgen, welkom bij Mangelot.nl webhosting en domeinnaam diensten ")  // tekst voor groet van 1 uur tot 11 uur
if ((hours == 11) || (hours == 12) || (hours == 13) || (hours == 14) || (hours == 15) || (hours == 16) || (hours == 17))
document.write(" GoedeMiddag, welkom bij Mangelot.nl webhosting en domeinnaam diensten ")  // tekst voor groet van 12 uur tot 18 uur
if ((hours == 18) || (hours == 19) || (hours == 20) || (hours == 21) || (hours == 22) || (hours == 23) || (hours == 0))
document.write(" GoedenAvond, welkom bij Mangelot.nl webhosting en domeinnaam diensten ")  // tekst voor groet van 19 uur tot 24 uur
document.write("")

