    $(document).ready(function() {
        $("div .processText").each(function() {
            $(this).mouseover(function() {
                $(this).stop().animate({ opacity: 0.75 }, 500);
           });
           $(this).mouseout(function() {
               $(this).stop().animate({ opacity: 0.0 }, 500);
           });
        });
    });

