var GAL = {

    set: function (){

        $(document.body).getElements('.cada').addEvents({

            'mouseenter': function(){
            this.style.background = '#F9F9F9';
            },

            'mouseleave': function(){
            this.style.background = '#FFFFFF'; 
            }

        });

    }

};

