var normal_table='';
function normal_menu_table(id) {	
var i=0;

if(normal_table!=id) {	
if(normal_table) {	
normal_menu_table(normal_table);
}
} else {	
normal_table='';
}
while(i<=normal_table) {
if (document.getElementById(id).style.display == 'none') {	
document.getElementById(id).style.display = 'inline';
normal_table=id;
} else {	
document.getElementById(id).style.display = 'none';
}
i++;
}
}




