/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready( function () {

    $(".afficheCache").click(
        function(){
            $(this).next("div").slideToggle("slow");
        }
    )

    $(".btpSuppr").cluetip(
        {   activation: 'click',
            splitTitle: '|',
            sticky: true,
            closePosition: 'bottom',
            closeText: 'Annuler',
            width: 300
        }
    );
});
