<!--

function top_menu(t,id) {

t.className = 'over';
document.getElementById('menu_box_' + id).style.display = 'block';

t.onmouseout = function() {
t.className = '';
document.getElementById('menu_box_' + id).style.display = 'none';
}

}

function top_menu_box(t,id) {

t.style.display = 'block';
document.getElementById('top_menu_' + id).className = 'over';

t.onmouseout = function() {
t.style.display = 'none';
document.getElementById('top_menu_' + id).className = '';
}

}

//-->
