// ARRAYS
var MthNm=new Array('-January-','-February-','-March-','-April-','-May-',
'-June-','-July-','-August-','-September-','-October-','-November-',
'-December-');

// VARIABLES AND CALCULATIONS
var email_1a=[106,111,104,110,50,55,64,116,101,110,50,55,46,111,114,103], email_1b='';
for (var i=0; i<email_1a.length; i++) email_1b+=String.fromCharCode(email_1a[i]); 
var phone_1a=[48,55,53,50,56,32,55,57,48,56,48,53], phone_1b='';
for (var i=0; i<phone_1a.length; i++) phone_1b+=String.fromCharCode(phone_1a[i]); 

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';};

// STRINGS
email_1c='e-mail to: <a href="mailto:'+email_1b+'" class="fo">'+email_1b+'</a><br />';
email_1d='<a href="mailto:'+email_1b+'" class="email">'+email_1b+'</a><br />';
phone_1d='<span class="phone">'+phone_1b+'</span><br />';
thisday=todat+MthNm[now.getMonth()]+toyr;
