function change_best(is_best)
{
    $("a[@id^='link']").each(
        function(i)
        {
            if (is_best == 1)
            {
                reg_rep=/map\//;
                str = 'map1/';
            }
            else
            {
                reg_rep=/map1\//;
                str = 'map/';    
            }
            this.href = this.href.replace(reg_rep, str);
        }
    );
}