function Menu(relpath)
// relpath je relativni cesta k adresari s menu - obvykle nic nebo "../"
{

document.write('<a href="'+relpath+'index.html"><img src="'+relpath+'top_logo.gif" width="640" height="40" title="Katedra automatizační techniky a řízení" /></a>');
document.write('<div id="navigace">');
document.write('<a href="'+relpath+'profile.htm">history</a>');
document.write('<a href="'+relpath+'people.htm">staff</a>');
document.write('<a href="'+relpath+'profile-student.htm">student profile</a>');
document.write('<a href="'+relpath+'absolvent.htm">study programs</a>');
document.write('<a href="'+relpath+'laboratories/">laboratories</a>');
document.write('<a href="'+relpath+'research.htm">research</a>');
document.write('<a href="'+relpath+'akce.htm">conferences</a>');
document.write('<a href="'+relpath+'publications.htm">publications</a>');
document.write('<a href="'+relpath+'../dp/indexe.asp">theses</a>');
document.write('<a href="'+relpath+'../index.html" class="english">česká verze</a>');

document.write('</div>');
}
