$(this).('.magic-box').find('img');
- странная запись, так низя вы че, вот
$(function(){
var img = $(this).find('.magic-box').find('img');
var header = $(this).find('article').find('h2 a');
$('.magic-box').hover(function(){
$(this).animate({"background-color":"#000"}, 300),
header.animate({"color":"#ddd"}, 300);
}, function(){
$(this).animate({"background-color":"#fff"}, 300),
header.animate({"color":"#000"}, 300);
})
})