function display_date()
{
 date = new Date();
 var day_of_month = date.getDate();
 var month_number = date.getMonth();
 var year_number = date.getFullYear();
 var month = '';
 if(month_number == 0){month = 'січн\я';}
 if(month_number == 1){month = 'лютого';}
 if(month_number == 2){month = 'березня';}
 if(month_number == 3){month = 'квітн\я';}
 if(month_number == 4){month = 'травн\я';} 
 if(month_number == 5){month = 'червн\я';}
 if(month_number == 6){month = 'липн\я';}
 if(month_number == 7){month = 'серпня';}
 if(month_number == 8){month = 'вересн\я';}
 if(month_number == 9){month = 'жовтн\я';}
 if(month_number == 10){month = 'листопада';}
 if(month_number == 11){month ='грудн\я';}
 var date_to_show = 'Сьогодні'+' '+day_of_month+' '+month+' '+year_number+' року'; 
 document.write(date_to_show);
}
display_date();