// JavaScript Document

function writeMenuItem (pageNumber, menuText, menuLink, lastone, eol)
{
document.write('<a ');
if (webpage == pageNumber) {document.write('class="actual" href="')} else {document.write('<a href="')};
document.write(menuLink);
document.write('">');
document.write(menuText)
document.write('</a>')
if (lastone == 'Y') {document.write('')} else {document.write(' - ')};
if (eol == 'Y') {document.write('<br>')} else {document.write('')};
}

writeMenuItem('01', 'Korunní pevnůstka (homepage)', 'index.html', 'N', 'N');
writeMenuItem('08', 'Historie olomoucké pevnosti', '_historie.html', 'N', 'N');
writeMenuItem('03', 'Fotogalerie', '_fotogalerie.html', 'N', 'N');
writeMenuItem('04', 'Mapy & plány', '_mapy_a_plany.html', 'N', 'N');
writeMenuItem('09', 'Průběh rekonstrukce', '_rekonstrukce.html', 'Y', 'Y');
writeMenuItem('02', 'O nás', '_o_nas.html', 'N', 'N');
writeMenuItem('11', 'Statutární orgány', '_organy.html', 'N', 'N');
writeMenuItem('10', 'MOP v médiích', '_media.html', 'N', 'N');
writeMenuItem('06', 'Sponzoři', '_sponzori.html', 'N', 'N');
writeMenuItem('12', 'Partnerské projekty', '_partnerskeprojekty.html', 'N', 'N');
writeMenuItem('07', 'Kontakt', '_kontakt.html', 'N', 'N');

writeMenuItem('21', 'Odkazy', '_odkazy.html', 'N', 'N');
writeMenuItem('20', 'Akce', '_akce.html', 'Y', 'Y');


