I\'ve seen some questions that address similar issues but none of the fixes seem to work for my situation. Basically I have multiple fancybox galleries on one page throughou
This part of your code :
$(".fancybox") .attr('rel', 'gallery') .fancybox({ .... etc
...is overriding the rel attributes in your html. Just remove the .attr() method from it like :
rel
.attr()
$(".fancybox") .fancybox({ .... etc
... and you will be fine.