$(document).ready(function()
{
	$("a.delPersLink").click(
		function(){
			var pers_id = $(this).attr('id');
			$.post("js/personage/del_personage.php",{ pers_id: pers_id } ,function(data)
			{
				$("div#"+pers_id).fadeOut(500);
			});
		}
	);
});
