
// Store the date in a variable
d = new Date()
dateText = ""

// Get the current minutes
minuteValue = d.getMinutes()
if (minuteValue < 10)
    minuteValue = "0" + minuteValue

// Get the current hours
hourValue = d.getHours()

// Customize the greeting based on the current hours
if (hourValue < 12)
    {
    greeting = "Good Morning"
    timeText = ", " + " Welcome to Cre8tivbox.com!"
    }
else if (hourValue == 12)
    {
    greeting = "Good Afternoon"
    timeText = ", " + " Welcome to Cre8tivbox.com!"
    }
else if (hourValue < 17)
    {
    greeting = "Good Afternoon"
    timeText = ", " + " Welcome to Cre8tivbox.com!"
    }
else
    {
    greeting = "Good Evening"
    timeText = ", " + " Welcome to Cre8tivbox.com!"
    }
// Write the greeting, the date, and the time to the page
document.write(greeting + timeText)

