now = new Date(); local = now.toString(); utc = now.toGMTString(); hours = now.getHours(); mins = now.getMinutes(); salut = "Good Afternoon"; if (mins < 10) mins = "0" + mins; if (hours < 12) salut = "Good Morning"; if (hours > 17) salut = "Good Evening"; document.write("

" + salut + ". Welcome to the Moons of Yavin web site." + "

");