Hello,
I was have the same problem but I developed in this way:
$list = facebook_page_albums_get_photo_list(mysql_escape_string($_GET["id"]));
<?php foreach ($list as $item) : ?>
<?php echo $item['link'];?>
<?php echo $item['source'];?>
<?php endforeach;?>
and then you can use Fancybox to make it nice.
For more informations check this:
https://developers.facebook.com/docs/graph-api/reference/v2.0/photo
Regards
`