$(document).ready(function(){

	//hide attorney names on pageload
	$('.attorneyName').hide();

	//show and hide attorney names on hover/out
	$('.attorney').hover(function(){
		$(this).children('.attorneyName').fadeIn();
			},function(){
		$(this).children('.attorneyName').fadeOut();
	});

});