function showSubMenu(id) {
document.getElementById(id).style.visibility="visible"
}
function hideSubMenu(id) {
setTimeout('hide("sub1")',3000)
}
function hide(id) {
document.getElementById(id).style.visibility="hidden"
}