	$(document).ready(function(){
		$(".mouseover").css({ opacity: 1 });
		$(".mouseover").hover(
		function() {
		$(this).stop().animate({"opacity": "0.8"}, "fast");
		},
		function() {
		$(this).stop().animate({"opacity": "1"}, "fast");
		});	 
	
		$(".mouseover").mouseenter(function() {
			var personName = $(this).attr("name");
		
			$('#'+personName).show("fast");
			
		}).mouseleave(function(){
			$('#' + $(this).attr("name")).hide(200);
		}); 
  
  	});
