// ARRAYS
var MthNm=new Array('-January-','-February-','-March-','-April-','-May-',
'-June-','-July-','-August-','-September-','-October-','-November-',
'-December-');

// VARIABLES AND CALCULATIONS
var email_1a=[80,97,117,108,64,119,105,110,100,102,97,108,108,97,112,112,
108,101,106,117,105,99,101,46,99,111,46,117,107], email_1b='';
for (var i=0; i<email_1a.length; i++) email_1b+=String.fromCharCode(email_1a[i]); 
var email_1c='E-mail to: &nbsp; <a href="mailto:'+email_1b+'" class="email">'+email_1b+'</a>';

var phone_1a=[48,55,56,57,49,32,52,57,54,55,56,57], phone_1b='';
for (var i=0; i<phone_1a.length; i++) phone_1b+=String.fromCharCode(phone_1a[i]); 
var phone_1c='<span class="phone">'+phone_1b+'</span>';

var now=new Date(), todat=now.getDate(), toyr=now.getFullYear(), thisday='';
var time=now.getHours(), msg='Good ', when='';
     if (time<12) {msg=msg+'morning.&nbsp ';}
else if (time<18) {msg=msg+'afternoon.&nbsp ';}
else              {msg=msg+'evening.&nbsp ';};
     if (time<07) {when=when+'during the morning, when';} 
else if (time<09) {when=when+'later this morning, when';} 
else if (time<12) {when=when+'this morning, as soon as';} 
else if (time<14) {when=when+'during the afternoon, when';} 
else if (time<17) {when=when+'this afternoon, as soon as';} 
else if (time<19) {when=when+'during the evening, when';} 
else if (time<21) {when=when+'this evening, as soon as';} 
else              {when=when+'tomorrow morning, when';};

var thisday=todat+MthNm[now.getMonth()]+toyr;


