var now = new Date()

	if (now.getHours() < 4) {
		document.write("Good Evening and Welcome to TheGiftExpress.com!")
	}
	else if (now.getHours() < 12) {
		document.write("Good Morning and Welcome to TheGiftExpress.com!")
	}
	else if (now.getHours() < 18) {
		document.write("Good Afternoon and Welcome to TheGiftExpress.com!")
	}
	else {
		document.write("Good Evening and Welcome to TheGiftExpress.com!")
	}
