    function custom_select_tab(tab_number) {
        // unselect all
        $$('.tab_piece').each(function(el) { 
            $(el.id).src = $(el.id).src.replace('_off', '_on');
        });
        $$('.tab_content_off').each(function(el) { 
            $(el.id).removeClassName('tab_content_off');
            $(el.id).addClassName('tab_content_on');
        });
        $$('.tab_text').each(function(el) { 
            $(el.id).hide();
        });

        // select the current tab
        $$('#maintab' + tab_number + ' .tab_piece').each(function(el) { 
            $(el.id).src = $(el.id).src.replace('_on', '_off');
        });
        $$('#maintab' + tab_number + ' .tab_content_on').each(function(el) { 
            $(el.id).removeClassName('tab_content_on');
            $(el.id).addClassName('tab_content_off');
        });
        $('tab_details_' + tab_number).show();

        return false;
    }
