<!--
now = new Date

if (now.getHours() < 5) {
    document.write("Someone must be having fun!<br /> It's the early hours of")
}
else if (now.getHours() < 9) {
    document.write("Good morning,<br /> welcome to ChooseaChat.com on")
}
else if (now.getHours() < 17) {
    document.write("Nice to see your here and not working ;)")
}
else {
    document.write("Enjoy your evening here at ChooseaChat.com on")
}
//-->
