Puedes hacerlo con lo que ya tenias y con lo que te pasó bathorz:
Algo como esto tal vez te sirva:
Código Javascript
:
Ver original<script language="javascript">
function mensajes(){
var txthello="";
var now = new Date();
var day = now.getDay();
var hours = now.getHours();
//Agrego el dia domingo con sus 3 mensajes segun la hora
if(day == 0){
if ((hours>=0) && (hours<6)) {txthello=" DOMINGO MADRUGADA";}
else if ((hours>=6) && (hours<21)) {txthello=" DOMINGO DIA";}
else if ((hours>=21) && (hours<0)) {txthello=" DOMINGO NOCHE";}
}
//Agrego otro dia (el martes) con sus 3 mensajes segun la hora
else if(day == 2){
if ((hours>=0) && (hours<6)) {txthello=" MARTES MADRUGADA";}
else if ((hours>=6) && (hours<21)) {txthello=" MARTES DIA";}
else if ((hours>=21) && (hours<0)) {txthello=" MARTES NOCHE";}
}
document.write(txthello + '<br/>');
}
mensajes(); //llamo a la funcion para que muestre el mensaje correspondiente
</script>
saludos