$(document).ready(function(){

	$('.facturer').click(function(){
    	var id = $(this).parent().parent().attr('id');
		var $button = $(this);
		$.post(
			"inc/gestionFormulaire.php",
			{act:"facturer",id:id},
			function(msg){
				if(msg==1){
					$button.parent().prev().html('Payé');
				}
			}
		);
    });
	$('.annuler').click(function(){
    	var id = $(this).parent().parent().attr('id');
		var $button = $(this);
		$.post(
			"inc/gestionFormulaire.php",
			{act:"annuler",id:id},
			function(msg){
				if(msg==1){
					$button.parent().prev().html('En attente');
				}
			}
		);
    });
	
	$('.archiver').click(function(){
    	var id = $(this).parent().parent().attr('id');
		var $button = $(this);
		$.post(
			"inc/gestionFormulaire.php",
			{act:"archiver",id:id},
			function(msg){
				if(msg==1){
					$button.parent().parent().fadeOut();
				}
			}
		);
    });
	
	/*$('.fichiers').colorbox({
		href: 'js/kcfinder/browse.php?type=files&lng=fr'					
	});*/
	$('.fichiers').click(function(){
		var id = $(this).parent().parent().attr('id');
		$(this).colorbox({href:'js/kcfinder/browse.php?lng=fr&type=m-1&id='+id,iframe:true, height:400,width:900});
	});
	window.KCFinder = {};
			window.KCFinder.callBack = function(url) {
				window.KCFinder = null;
				$.colorbox.close();
			};
	
});

