	// Store the date in a variable
	d = new Date()

	// Get the current hours
	hourValue = d.getHours()

	// Customize the greeting based on the current hours
	if (hourValue < 12)
	    {
	    greeting = "Good morning"
	    }
	else if (hourValue == 12)
	    {
	    greeting = "Good afternoon"
	    }
	else if (hourValue < 17)
	    {
	    greeting = "Good afternoon"
	    }
	else
	    {
	    greeting = "Good evening"
	    }


    	var name = GetCookie('Thurrock-DTS');
    	if (name != null)
    		document.write("<h2>" + greeting + " and welcome back to our web-site. <br>We hope you enjoy your return visit.</h2>")
    	else
    		document.write("<h2>" + greeting + " and welcome to the THURROCK-DTS web-site.</h2>")

