// JavaScript Document// *********************************************// Change welcome title according to time of day// *********************************************day=new Date()     //..get the datex=day.getHours()    //..get the hourif(x>=0 && x<12) {document.write("<img src='images/title_good_morning.gif' alt='Good Morning!' width='481' height='21' border='0'> ")} elseif(x>=12 && x<18) {document.write("<img src='images/title_good_afternoon.gif' alt='Good Afternoon!' width='495' height='21' border='0'> ")} elseif(x>=18 && x<24) {document.write("<img src='images/title_good_evening.gif' alt='Good Evening!' width='471' height='21' border='0'> ")}//