colorb = "#000000"
colorw = "#ffffff"

link = new Array()
link[0] = new Array
link[0][0] = '<a href="index.html" onMouseover="men0.style.background=colorb"'
link[0][0] += ' onMouseout="men0.style.background=colorw">Home</a>'
link[0][1] = '<a href="about.html" onMouseover="men0.style.background=colorb"'
link[0][1] += ' onMouseout="men0.style.background=colorw">About/Aim</a>'
link[0][2] = '<a href="history.html" onMouseover="men1.style.background=colorb"'
link[0][2] += ' onMouseout="men1.style.background=colorw">History</a>'
link[0][3] = '<a href="howto.html" onMouseover="men1.style.background=colorb"'
link[0][3] += ' onMouseout="men1.style.background=colorw">How to</a>'

link[1] = new Array
link[1][0] = '<a href="competition.html" onMouseover="men0.style.background=colorb"'
link[1][0] += ' onMouseout="men0.style.background=colorw">Competition</a>'

link[2] = new Array
link[2][0] = '<a href="gallery.html" onMouseover="men0.style.background=colorb"'
link[2][0] += ' onMouseout="men0.style.background=colorw">Gallery</a>'

link[3] = new Array
link[3][0] = '<a href="release.html" onMouseover="men0.style.background=colorb"'
link[3][0] += ' onMouseout="men0.style.background=colorw">Press releases</a>'
link[3][1] = '<a href="sendus.html" onMouseover="men1.style.background=colorb"'
link[3][1] += ' onMouseout="men1.style.background=colorw">Send us!</a>'
link[3][2] = '<a href="news.html" onMouseover="men2.style.background=colorb"'
link[3][2] += ' onMouseout="men2.style.background=colorw">News</a>'

link[4] = new Array
link[4][0] = '<a href="guestbook.html" onMouseover="men0.style.background=colorb"'
link[4][0] += ' onMouseout="men0.style.background=colorw">Guestbook</a>'

link[5] = new Array
link[5][0] = '<a href="contact.html" onMouseover="men0.style.background=colorb"'
link[5][0] += ' onMouseout="men0.style.background=colorw">Contact</a>'
link[5][1] = '<a href="links.html" onMouseover="men0.style.background=colorb"'
link[5][1] += ' onMouseout="men0.style.background=colorw">Participating Countries</a>'

function zmien(w,a)
{
tabela = '<table border="0" cellpadding="3" cellspacing="0" width="126">';
for(i=0; i<link[a].length; i++)
tabela += '<tr><td style="border-bottom: 1px solid #000000" id="men'+i+'">'+link[a][i]+'</td></tr>'
tabela += '</table>'

if(document.all)
document.all[w].innerHTML = tabela;

if(document.getElementById)
document.getElementById(w).innerHTML = tabela;

}


function ukryj()
{
if(document.all)
document.all['abs'].style.visibility = "hidden";

if(document.getElementById)
document.getElementById('abs').style.visibility = "hidden";
}




function pokaz(w)
{
if(document.all)
document.all[w].style.visibility = "visible";

if(document.getElementById)
document.getElementById(w).style.visibility = "visible";
}



function przesun(w,x,y)
{
if(document.all)
{
document.all[w].style.left = x;
document.all[w].style.top = y;
}

if(document.getElementById)
{
document.getElementById(w).style.left = x;
document.getElementById(w).style.top = y;
}
}

var walk;

