function rowOver(){
lmnt = window.event.srcElement;
if (lmnt.tagName.toUpperCase() == 'TABLE')
return;
while (lmnt.tagName.toUpperCase() !='TD') 
lmnt = lmnt.parentElement;
lmnt.style.background = "#5C8EAB";
}
function rowOut(){
lmnt = window.event.srcElement;
if (lmnt.tagName.toUpperCase() == 'TABLE')
return;
while (lmnt.tagName.toUpperCase() !='TD') 
lmnt = lmnt.parentElement;
lmnt.style.background ="#000000";
}
document.write('<table border=0 cellPadding=0 cellSpacing=0>')
document.write('<tr><center><a href=http://www.musiktilfest.com/><font size=6>&nbspMOBILDISKOTEK NEW BEAT</font></a>')
document.write('<td onmouseout=rowOut(); onmouseover=rowOver(); class=Menu onclick=\"top.location.href =\'om.html\'\">Om Musiktilfest</td>')
document.write('<td onmouseout=rowOut(); onmouseover=rowOver(); class=Menu onclick=\"top.location.href =\'gearlist.html\'\">Gear List</td>')
document.write('<td onmouseout=rowOut(); onmouseover=rowOver(); class=Menu onclick=\"top.location.href =\'billeder.html\'\">Billeder</td>')
document.write('<td onmouseout=rowOut(); onmouseover=rowOver(); class=Menu onclick=\"top.location.href =\'links.html\'\">Links</td>')

document.write('</tr></table>')

