Извините, конечно, что домываю, но что-то борода выходит...
Вот мой код. При нажатии на ссылку с классом "right" должен вызываться класс дива в котором эта ссылка расположена.
<body>
<style>
.black {background-color:#000;
border:1px solid black;}
.white {background-color:white;
border:1px solid black;}
.empty {background-color:white;}
.l {
display:block;
width:100px;
height:100px;
float:left;
margin-right:10px;
border-radius:50px;}
</style>
<div id="main">
<div class="l 1 black"><a class="left" href="#"><-</a> <a href="#" class="right">-></a></div>
<div class="l 2 black"><a class="left" href="#"><-</a> <a href="#" class="right">-></a></div>
<div class="l 3 black"><a class="left" href="#"><-</a> <a href="#" class="right">-></a></div>
<div class="l 4"><a class="left" href="#"><-</a> <a href="#" class="right">-></a></div>
<div class="l 5 white"><a class="left" href="#"><-</a> <a href="#" class="right">-></a></div>
<div class="l 6 white"><a class="left" href="#"><-</a> <a href="#" class="right">-></a></div>
<div class="l 7 white"><a class="left" href="#"><-</a> <a href="#" class="right">-></a></div>
</div>
<script>
$(".l a.right").click(function () {
var cur = $('a').parent('className');
alert(cur);
});
</script>
</body>