function setdate()
{
	var now = new Date();
	var textout;
	var month = now.getMonth();
	var date = now.getDate();
	
	textout = date + " ";
	
	if (month==0) textout+="Січня";
	if (month==1) textout+="Лютого";
	if (month==2) textout+="Березня";
	if (month==3) textout+="Квітня";
	if (month==4) textout+="Травня";
	if (month==5) textout+="Червня";
	if (month==6) textout+="Липня";
	if (month==7) textout+="Серпня";
	if (month==8) textout+="Вересня";
	if (month==9) textout+="Жовтня";
	if (month==10) textout+="Листопада";
	if (month==11) textout+="Грудня";
	

	if(document.getElementById("cdate")) document.getElementById("cdate").innerHTML = textout;
}
