//<script>
;jQuery(document).ready(function($) {
	$('.people-gallery a.gallery-link').click(function() {
		$('.people-gallery .person-desc').css('display','');
		$('.person-desc', $(this).parent()).css('display','block');
		return false;
	});
	$('.people-gallery a.close-button').click(function() {
		$('.person-desc', $(this).parent().parent()).css('display','');
		return false;
	});
	$('#content .people-gallery .pg-img-hover').hover(
		function() { $(this).addClass('pg-img-hovered'); }, 
		function() { $(this).removeClass('pg-img-hovered'); }	
	);
		});	

