$(document).ready(function() {
    /* Confirmation suppression */
    jQuery('.JSdelConf').live('click', function(){
	return confirm('Etes vous sûr de vouloir supprimer ?');
    });

    /* Confirmation suppression */
    jQuery('.JScliquable').live('click', function(){
	window.location = $(this).find("a").attr("href");
	return false;
    }).css("cursor", "pointer");

    /* Ouverture dans un nouvel onglet */
    jQuery('a.JSblank').live('click', function(){
        this.target = "_blank";
    });

});