I am trying to create a compact image gallery using the Roundabout plugin.
The carousel should rotate the thumbnails and, only for the image currently on focus,
In addition to what the options you're
$('ul.image-gallery').find('li').focus(function() {
$(this).find('a').fancybox.cancel();
}
});
This assumes that you are using roundabout on the ul, and fancybox on the anchor tags inside of them. When the roundabout gives focus to an li, it cancels the fancybox that will do the same thing.