$(document).ready(function() {
	// check photoalbum link
	$("a[href^='#photoalbum_']").each(function() {
		var albumArr = $(this).attr('href').split('_');
		$(this).attr('id','photocat_'+albumArr[1]);
		$(this).addClass('photocatbox');
	});
	 
	// photobook
	$(".photocatbox").bbphotobook({width:800,height:600});
});
