jQuery.fn.dsTab = function() {
    var $ = jQuery;
    $('div.tabbed_links a', this).click(function(e){
        e.preventDefault();
        $(this).parent().children().removeClass('active');
        $(this).addClass('active');
        $(this).parent().parent().children('div.tab_box').hide();
        $('#'+$(this).attr('rel')+'_box').show();
    });
    $('div.tab_box',this).hide();
    var e=$('div.tabbed_links a.active', this);
    e.parent().parent().children('#'+e.attr('rel')+'_box').show();
    return this;
}

