$(document).ready(function(){

	$("#whoWeArePhoto").mouseover(function(){
		$(".name").toggle();
	});
	$("#whoWeArePhoto").mouseout(function(){
		$(".name").toggle();
	});
});