<!--
function greeting() {
Now = new Date()
Hour = Now.getHours();
if (Hour < 5)
msg ="Can't sleep? Worry about finances?"
else if(Hour <12)
msg ="Good morning and welcome to your first step to financial freedom."
else if(Hour < 18)
msg ="Good Afternoon! Welcome to your first step to financial freedom."
else if (Hour < 24)
msg ="Good Evening. I hope you have had a pleasant day. welcome to your first step to financial freedom. "
return( msg )
}
document.write(greeting())
//-->

