
window.addEvent('domready', function(){
    
    $('drop_down_menu').getElements('ul.links').setStyle('display','');
    $('drop_down_menu').getElements('li.menu').each( function( elem ){
        var list = elem.getElement('ul.links');
        var myFx = new Fx.Slide(list).hide();
        elem.addEvents({
            'mouseenter' : function(){
                myFx.cancel();
                myFx.slideIn();
                elem.getElement('a').setStyle('color','Yellow')
                elem.getElement('a').setStyle('background','#002b39')
                elem.getElement('a').setStyle('text-decoration','none')
                elem.getElement('a').getParent('li').setStyle('background','#002b39');
                var menu_id = elem.getElement('a').get('id');
                $('drop_down_menu').getElements('div[class^=divfx_'+menu_id+']').removeProperty('style');
                $('drop_down_menu').getElements('div[class^=divfx_'+menu_id+']').setStyles({
                    overflow: 'none',
                    margin: '0px',
                    position: 'static',
                    height: '0px'
                });
            },
            'mouseleave' : function(){
                myFx.cancel();
                myFx.slideOut();
                elem.getElement('a').setStyle('color','White')
                elem.getElement('a').setStyle('background','#003766')
                elem.getElement('a').getParent('li').setStyle('background','#003766');
                var menu_id = elem.getElement('a').get('id');
                $('drop_down_menu').getElements('div[class^=divfx_'+menu_id+']').removeProperty('style');
                $('drop_down_menu').getElements('div[class^=divfx_'+menu_id+']').setStyles({
                    overflow: 'hidden',
                    margin: '0px',
                    position: 'none',
                    height: '0px',
                    width: '300px'
                });
            }
        });
        
    });

    $('drop_down_menu').getElements('li.no_menu').each( function( elem ){
            elem.addEvents({
                'mouseenter' : function(){
                    elem.getElement('a').setStyle('color','Yellow')
                    elem.getElement('a').setStyle('background','#002b39')
                    elem.getElement('a').setStyle('text-decoration','none')
                    elem.getElement('a').getParent('li').setStyle('background','#002b39');


                },
                'mouseleave' : function(){
                    elem.getElement('a').setStyle('color','White')
                    elem.getElement('a').setStyle('background','#003766')
                    elem.getElement('a').getParent('li').setStyle('background','#003766');

                }
            });
        });
});

