(function($) {
	$.fn.boxEffects = function() {
        if ( !$.browser.msie && false ) { //Se desactivo el plugin
            var boxes = $(this);
            $(boxes).each(function(){
                var box = $(this);
                var box_content = $(box).find('div.box-content');
                var box_description = $(box).find('div.box-description');
                var box_category = $(box).find('div.box-category');
                var height = $(box_content).height();
                var margin_top = height - $(box_description).height();
                var time_display = height * 100;
                var time_return = height;
                //Asignacion de estilos necesarios para que las cajas se comporten como lo esperado
                $(box).css('position', 'relative');
                $(box_description).css('overflow', 'hidden');
                $(box).not('.image').mouseover(function(){
                    $(box_content).stop();
                    $(box_content).animate({
                        'margin-top': '-'+ margin_top +'px'
                        }, time_display, 'linear');
                });
                $(box).not('.image').mouseout(function(){
                    $(box_content).stop();
                    $(box_content).animate({
                        'margin-top': '0px'
                    }, time_return);
                });
            });
        }
	}
})(jQuery);
