


$(function() {

	var options = {};
	function callback() {
		setTimeout(function() {
			$( "#effect:visible" ).removeAttr( "style" ).fadeOut();
		}, 1000 );
	};


	$(".people_avatar").mouseover(function() {
	$(this).find(".blackbox").show();	
	}).mouseout(function(){
	$(this).find(".blackbox").hide();
	});	

});



