$(function() {
            $('.MouseOver').each(function() {
                $(this).hover(
                    function() {
                        $(this).stop().animate({ opacity: 1 }, 300);
                    },
                   function() {
                       $(this).stop().animate({ opacity: 0.4 }, 500);
                   })
                });
        });

