$(document).ready(function() {
    $('#search .title').bind('click', function() {
        id = $(this).attr('id');
        name = $(this).attr('id').substr(6);
        $('#search .hidden').each(function() {
            if ($(this).css('display', 'none'))
            {
                display_name = $(this).parent().attr('id').substr(6);
//                if (display_name != name)
                    $(this).show();
//                else
//                    $(this).slideDown();
            }
        });
        $('#search .items').each(function() {
            if ($(this).attr('id') != ('items_' + name))
                $(this).slideUp();
        });
        $('#search #items_' + name).slideDown();
        return false;
    });
});

