window.addEvent('domready', function() {
    $$('.menu_nav li').addEvent('mouseover',function(){
			this.getElements('ul').addClass('displayBlock');
			});
			
		 $$('.menu_nav li').addEvent('mouseleave',function(){
			this.getElements('ul').removeClass('displayBlock');
			});
});
