
function chatText(){
   var now = new Date(); 
   var day = ""; 
   day = eval('chat['+now.getDay()+']');

   var date = now.getDate(); 
   var month = now.getMonth() + 1; 
   var year = now.getYear(); 
   var dateValue = day //+ " " + date + ". " + month + ". " + year  ; 
   return dateValue;
}


