jQuery(function(){
	// add fancybox to all links to images
	$("a[href$='.jpg'],a[href$='.jpeg'],a[href$='.png'],a[href$='.gif']").fancybox();

	// toggle persons
	// hide all divs
	$('div.person div.extended').hide();
	$('div.person span.a').click(function(){
		if ( $(this).attr('data-title') ) {
			 $(this).text($(this).attr('data-title'));
			$(this).removeAttr('data-title');
		} else {
			$(this).attr('data-title', $(this).text());
			$(this).text('less');
		}		
		$(this).closest('div.person').children('div.extended').slideToggle();
	});
});

