// JavaScript Document for Purified Design/* preload images*/
if (top.location != self.location) {
	top.location.replace(self.location);
	}
function greeting() {
	var now = new Date();
	if ((now.getHours() >= 5) && (now.getHours() < 12)) {
		document.write("<span>Good Morning,</span>");
	}else if (now.getHours() >= 17) {
		document.write("<span>Good Evening,</span>");
	}else if (now.getHours() >= 12) {
		document.write("<span>Good Afternoon,</span>");
		}else {document.write("<span>Hello and,</span>"); }} 
		/* end dynamic greeting */

