var initMenus = function() {
        $$('ul.dropdown').each(function(m) {
                if (typeof m.init == "undefined" || m.init == false) {
                        m.getElements('li').each(function(c) {
                                c.set({
                                        'events': {
                                                'mouseenter': function() { if (this.getChildren('ul')) this.getChildren('ul').set('styles', {'display': 'block'}); },
                                                'mouseleave': function() { if (this.getChildren('ul')) this.getChildren('ul').set('styles', {'display': 'none'}); },
                                                'click': function() { if (this.getChildren('ul')) this.getChildren('ul').set('styles', {'display': 'none'}); }
                                        }
                                });
                        });
                }

                m.init = true;
        });
};

window.addEvent('domready', initMenus);