/*
about.js
*/

// on load
$(document).ready(function(){
	// show personnel links
	$('.item').hover(
		function () {
			$(this).find("dd.title").hide();
			$(this).find("dd.links").show();
		}, 
		function () {
			$(this).find("dd.title").show();
			$(this).find("dd.links").hide();
		}
	);
});
