Could someone please explain me why replacing the following
$('.post_title a').hover(function () {
$(this).parent().parent().parent().parent().find(".post_footer").toggleClass('footer_border')
});
with
$('.post_title a').hover(function () {
$(this).closest(".post_footer").toggleClass('footer_border')
});
doesn't work??