$(function(){
	/*Show our staff face details*/
	$('.ourstaff .face').hover(
		function(){
			$(this).find('div').show();
		},
		function(){
			$(this).find('div').fadeOut(300);
		}
	);
});
