<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div class="partnersBox">
<a href="javascript:;" class="aboutPart"><span>Барбекю Экспо</span></a>
<a href="javascript:;">Благодарность</a>
<div class="aboutPartText">
текст
</div>
</div>
<script>
$(".aboutPart").click(function () {
$(this).nextAll(".aboutPartText").css("background", "yellow");
});
</script>
</body>
</html>