$(function() {

      $(".divBoxedContent").hover(
      function() {
        $(this).parent().children(".dOp").stop().animate({"background-color": "#ccc"}, "fast");
      },
      function() {
        $(this).parent().children(".dOp").stop().animate({"background-color": "#fff"}, "fast");
      });
});
