var d = new Date();
var c = new Array();
c[0]="Sunday";
c[1]="Monday";
c[2]="Tuesday";
c[3]="Wednesday";
c[4]="Thursday";
c[5]="Friday";
c[6]="Saturday";

var hour=(d.getHours());
var minute=(d.getMinutes());
var day=c[d.getDay()];
var pres="";
var url="";

if (day=="Sunday")
{ 
pres = "<b>Its the early hours of the morning</b><br>"; 
if (hour>5)  { pres = "<b>Good Morning</b><i></i><br><br>"; }
if (hour>11) { pres = "<b>Good Afternoon</b><i></i><br><br>"; }
if (hour>17) { pres = "<b>Good Evening</b><i></i><br><br>"; }
}

if (day=="Monday")
{ 
pres = "<b>Its the early hours of the morning</b><br>"; 
if (hour>5)  { pres = "<b>Good Morning</b><i></i><br><br>"; }
if (hour>11) { pres = "<b>Good Afternoon</b><i></i><br><br>"; }
if (hour>17) { pres = "<b>Good Evening</b><i></i><br><br>"; }
}

if (day=="Tuesday")
{ 
pres = "<b>Its the early hours of the morning</b><br>"; 
if (hour>5)  { pres = "<b>Good Morning</b><i></i><br><br>"; }
if (hour>11) { pres = "<b>Good Afternoon</b><i></i><br><br>"; }
if (hour>17) { pres = "<b>Good Evening</b><i></i><br><br>"; }
}

if (day=="Wednesday")
{ 
pres = "<b>Its the early hours of the morning</b><br>"; 
if (hour>5)  { pres = "<b>Good Morning</b><i></i><br><br>"; }
if (hour>11) { pres = "<b>Good Afternoon</b><i></i><br><br>"; }
if (hour>17) { pres = "<b>Good Evening</b><i></i><br><br>"; }
}

if (day=="Thursday")
{ 
pres = "<b>Its the early hours of the morning</b><br>"; 
if (hour>5)  { pres = "<b>Good Morning</b><i></i><br><br>"; }
if (hour>11) { pres = "<b>Good Afternoon</b><i></i><br><br>"; }
if (hour>17) { pres = "<b>Good Evening</b><i></i><br><br>"; }
}

if (day=="Friday")
{ 
pres = "<b>Its the early hours of the morning</b><br>"; 
if (hour>5)  { pres = "<b>Good Morning</b><i></i><br><br>"; }
if (hour>11) { pres = "<b>Good Afternoon</b><i></i><br><br>"; }
if (hour>17) { pres = "<b>Good Evening</b><i></i><br><br>"; }
}

if (day=="Saturday")
{ 
pres = "<b>Its the early hours of the morning</b><br>"; 
if (hour>5)  { pres = "<b>Good Morning</b><i></i><br><br>"; }
if (hour>11) { pres = "<b>Good Afternoon</b><i></i><br><br>"; }
if (hour>17) { pres = "<b>Good Evening</b><i></i><br><br>"; }
}


document.write(pres);