I don't think you can do this just with a selector, unless it happens that the a elements are not just the first anchor, but the first child of any kind inside the "panels" divs (in which case you can use :first-child).
You'll probably have to put some logic in the handler itself, to check that the anchor clicked is the first anchor in the div. Something along these lines:
$("#panel").delegate(".panels a", "click", function() {
if ($(this).siblings("a").andSelf()[0] === this) {
// It's the first anchor in its parent
}
return false;
});
Live example
That works because siblings and andSelf both guarantee to keep the array inside the jQuery object in document order, so checking if this is the [0]th element works.