$(function(){
    $('#topInfo table tr td a').each(function(){
        var tag = $(this).text();
        var def_text = tag.replace(/\[\[/g, '<span class="icoAdd">');
        def_text = def_text.replace(/\]\]/g, "");
        tag = tag.replace(/\[\[.*?\]\]/g, def_text );
        $(this).text(tag);
   });
});
