$(document).ready(function() {

    $(".level").hover(function() {
           $(this).removeClass("off").addClass("on");
           var width_elt = $(this).children(".sb_content").width()+25;
           $(this).stop(true,true).animate({width:width_elt},500,function() {
              $(this).children(".sb_content").fadeIn("fast");
              $(this).children(".addthis_toolbox").fadeIn("fast");
           });
        },
        function() {
           $(this).removeClass("on").addClass("off");
           $(this).stop(true,true).animate({width:0},1500);
           $(this).children(".sb_content").stop(true,true).fadeOut("fast");
           $(this).children(".addthis_toolbox").stop(true,true).fadeOut("fast");
        }
    );

});

