// JavaScript Document

$ (function () {
    $ ("span.marker").parent ().parent ().each (function () {
        var marker = $ (this).children ().children ("span.marker");
        var width = 0;
        marker.each (function () {
            width = Math.max (width, $ (this).css ("display", "inline").width () - parseInt ($ (this).css ("text-indent")));
        });
        var margin = (parseInt ($ (marker [0]).css ("margin-right")) + width) + "px";
        $ (this).css ("margin-left", margin);
        marker.width (width).css ("margin-left", "-" + margin);
    });
});