<!-- Hide code from older browsers
var inmenu = false ; var lastmenu = 0 ; var base = "#ffffff" ; var extent = "90px" ; var busy = "#ffb6b0" ; var loose = "#f9f9f3" ; var hang = 1500 ; function menu_on ( current ) { if ( !document.getElementById ) { return ; } inmenu = true ; oldmenu = lastmenu ; lastmenu = current ; if ( oldmenu ) { menu_erase ( oldmenu ) ; } m = document.getElementById ( "item_" + current ) ; box = document.getElementById ( current ) ; box.style.left = m.offsetLeft ; box.style.top = m.offsetTop + m.offsetHeight ; box.style.visibility = "visible" ; m.style.backgroundColor = loose ; box.style.backgroundColor = base ; box.style.width = extent ; } function menu_pin ( current ) { if ( !document.getElementById ) { return ; } inmenu = true ; oldmenu = lastmenu ; lastmenu = current ; if ( oldmenu ) { menu_erase ( oldmenu ) ; } m = document.getElementById ( "item_" + current ) ; box = document.getElementById ( current ) ; box.style.left = m.offsetLeft ; box.style.top = m.offsetTop + m.offsetHeight ; box.style.visibility = "visible" ; m.style.backgroundColor = busy ; box.style.backgroundColor = base ; box.style.width = extent ; } function menu_off ( current ) { inmenu = false ; window.setTimeout ( "menu_erase ( '" + current + "' ) ;" , hang ) ; } function menu_erase ( current ) { if ( !document.getElementById ) { return ; } if ( inmenu && lastmenu == current ) { return ; } m = document.getElementById ( "item_" + current ) ; box = document.getElementById ( current ) ; box.style.visibility = "hidden" ; m.style.backgroundColor = loose ; } function menu_focus ( menu , item ) { if ( !document.getElementById ) { return ; } inmenu = true ; lastmenu = menu ; m.style.backgroundColor = loose ; obj = document.getElementById ( item ) ; obj.style.backgroundColor = busy ; } function menu_release ( menu , item ) { if ( !document.getElementById ) { return ; } menu_off ( menu ) ; cut = document.getElementById ( "item_" + menu ) ; cut.style.backgroundColor = loose ; obj = document.getElementById ( item ) ; obj.style.backgroundColor = loose ; } // Stop hiding code --> 