var $j = jQuery.noConflict();

$j(function(){

    $j(".buttonShare").click(function() {
       $j(this).next().toggle();
       return false;
    });

});
