$(function(){
	// find embedded albums and assign id's + galleriffic
	$('.embedded-album-container').each(function(i){
		var id = i;
		$(this).find('.embedded-album').attr('id', 'embedded-album-'+id);
		$(this).find('.embedded-album-slideshow').attr('id', 'embedded-album-slideshow-'+id);
		$(this).find('.embedded-album-thumbs').attr('id', 'embedded-album-thumbs-'+id);
		$('#embedded-album-'+id).galleriffic('#embedded-album-thumbs-'+id, {
			imageContainerSel: '#embedded-album-slideshow-'+id,
			numThumbs: 5
		});
	});
});
