function tiempo () {

var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
var day=today.getDate();
var month=today.getMonth() + 1;
/*var month= new Array(12);
month[0]="Január";
month[1]="Február";
month[2]="Március";
month[3]="Április";
month[4]="Május";
month[5]="Június";
month[6]="Július";
month[7]="Augusztus";
month[8]="Szeptember";
month[9]="Október";
month[10]="November";
month[11]="December";*/
var year=today.getFullYear();
//add a zero in front of numbers<10
m=checkTime(m);
s=checkTime(s);
document.getElementById('fecha').innerHTML=year+"."+checkTime(month)+"."+checkTime(day)+". "+h+":"+m+":"+s;
t=setTimeout('tiempo()',500);
}

function checkTime(i)
{
if (i<10)
  {
  i="0" + i;
  }
return i;
}

function muzeum (mit) {
    var x=document.getElementById(mit);
    x.style.display=('block');
}