$(function(){
   $('.morelinks').click(function(){
	   // on récupère le parent pr avoir son id
	   var idDiv = $(this).parent().attr('id');
		
		//catch error si pas d'id trouvé
		if (idDiv == undefined){
			//block link
			return false;
		}

		//display dialog
		$("#"+idDiv+"clic").dialog({
			title : idDiv,
			// position : ['right','center'],
			resizable: false,
			modal : true,
		});

		//block link
		return false;
	});
});

