It is a great idea to have a Facebook fan page for your company, club or organization.
This is a minor hack of the Fotobook plugin for WordPress. Fotobook is originally meant to apply your personal photo albums into WordPress, but we’re going to make one small code tweak to instead pull the albums from the fan page that we administer.
After installing the plugin, go ahead and activate it and grant the permissions to your Facebook account.
Next, visit your Facebook fan page, and click into an album so you’re viewing all photos in one particular album. In the address bar you’ll see a &id=123123123. Copy that ID number.

In the plugin directory open the fotobook.php file and head down to line 243 and look for this code.
$uid = $session['uid'];
Swap that code for this
//$uid = $session['uid'];
$uid = 123123123;
With the 123123123 being the ID code for your fan page.
Back in the plugin administration page, go ahead and import your albums. And you should be good to go!
With a thanks to B. Thibault in the forums at the Fotobook Application Page.