function zobraz(a) {
var i;
for (i=1; i<=5;i++) {document.getElementById('obsah'+i).style.display='none'; document.getElementById('menu'+i).style.color='orange';}
document.getElementById('obsah'+a).style.display='block';
document.getElementById('menu'+a).style.color='yellow'
}

function min(who)  {
who.style.height='25px';
}

function mout(who)  {
who.style.height='21px';
}
zobraz(1);