$(document).ready(function() {
    $(this).run();
});

jQuery.fn.run = function() {

    var context = this;
    
    /*$('.left_column .item').click(function(e) {
        $current = $(this).siblings('.current');
        $current.removeClass('current');
        $('.subitems', $current).slideUp('slow');
        $(this).addClass('current');
        $('.subitems', this).slideDown('slow');
        return false;
    });*/
    
    return this;

};
