function setUpPhotoAlbumSB() {
	var theLink=jQuery('div.thumbnail-frame a').each(function() {
		theURL=jQuery(this).attr('href').replace(/html/, 'jpg');
		var theTitle=jQuery(this).next('p.thumbnail-caption').text();
		jQuery(this).attr({
			'href': theURL,
			'rel': 'shadowbox[photoSet]',
			'title': theTitle
		});
	});
	return;
}
