
/******************************************************
MooTools Effects
******************************************************/

// Note that the domready check is a MooTools provided check, but I've used
// it elsewhere for other functions too

//Added by Paul 12/3/2008 for Fogbugz 2749
var hoverMenuToggler = null; //So it can be accessed by the close button
window.addEvent('domready', function(){
        if( document.getElementById ('generalinformation') ) {
            document.getElementById ('hovermenu').style.display = 'block';
            hoverMenuToggler = new Accordion (
                'a.hovermenutoggler', //the toggler for this Accordion
                'div.hovermenu', //what to roll up and down for this accordion
                {
                    opacity: false, // Allow fading effect on open/close
                    alwaysHide: true, // Allow togglers to close their associated element if true
                    start: 'all-closed' // At start, ensure all elements are hidden:
                }
            );
        }
});