/**
 * Je peux aider - Besoins - Projet
 */
		  
$(document).ready(function(){
	$(".click_i_can_help").click(function() {
		var myid = $(this).attr('id');
			$.ajax({
				type: 'post',
				url: '/participer/icanhelp',
				cache: false,
				dataType: 'text',
				async: true,
				data: {'data[id]':myid},
				beforeSend:function(){ },
				success:function(rep, textStatus){					
					$('#'+myid).html("J'ai proposé mon aide");				
				},
				complete:function(){
				}			

			});		
	});
	$('.click_i_can_help').confirm({		
	msg:'Etes-vous sûr de vouloir aider!? \n',
		timeout:5000
	}); 	
	
});
	
