﻿
window.addEvent('load', function() {

    $$('.MenuAutenticado li').addEvents({
	    'mouseover': function(){
		    this.addClass('liHover');
	    },
	    'mouseout': function(){
		    this.removeClass('liHover');
	    }
    });
    
   });