Add caption text from gallery image to fancybox popup image
example here http://www.organicmeaustralia.com.au/fruits.html
<script>
$(function(){
$(".overlayImg").each(function(){
if($(this).next(".caption")){
var string = $(this).next(".caption").html();
if(string.length > 0){
console.log(string);
$(this).attr("title", string);
}
}
});
});
</script>