Проблема решена. Нужно было так:
$(document).ready(function(){
$(".cc_item", this).mouseover(function() {
$(".cc_title", this).stop().animate({ opacity: "0" }, 800);
});
$(".cc_item", this).mouseleave(function() {
$(".cc_title", this).stop().animate({ opacity: "1" }, 200);
});
});