[jQuery] Memory Leak

[jQuery] Memory Leak

I'm getting a memory leak in this function, which iterates over a series of items in the object allSections, showing a question set in the object and a yes/no answer, which then get inserted in an array of results.  In Drip (memory leak finder for IE), I'm seeing the anchors (with the class 'answer') as leaking.  I've tried unbinding them at the beginning of the function, before they are destroyed (with just a $('.answer').unbind('click')), but they still show up as lost dom objects and they show as having an empty function object as their onclick property.  I can't think what I'm missing...

function showQuestion(qIndex) {
        $('.answer').unbind('click');
        if (typeof allSections[qIndex] != 'undefined') {
                var category = allSections[qIndex];
                if (category.title == 'Basics') {

                        indicesChosen.push(qIndex);
                        qIndex++;
                        showQuestion(qIndex);
                }
                else {
                        $('#index').empty().html('Question '+(qIndex)+' of '+(allSections.length-1));
                        $('#question').empty().html(category.question+' ');
                        $('#question').append($('<a id="yes" href="http://www.nabble.com/forum/ViewPost.jtp?post=7746903&framed=y#" class="answer" target="_top"
rel="nofollow">Yes</a> / <a id="no" href="http://www.nabble.com/forum/ViewPost.jtp?post=7746903&framed=y#" class="answer" target="_top" rel="nofollow">No</a>'));
                        $('.answer').click(function() {
                                if ($(this).html() == 'Yes') {
                                        indicesChosen.push(qIndex);
                                }
                                qIndex++;
                               
showQuestion(qIndex);
                        });
                }
        }
        else
                completeWizard();
}


<hr size=1>Have a burning question? Go to <a href="http://answers.yahoo.com/;_ylc=X3oDMTFvbGNhMGE3BF9TAzM5NjU0NTEwOARfcwMzOTY1NDUxMDMEc2VjA21haWxfdGFnbGluZQRzbGsDbWFpbF90YWcx">Yahoo! Answers</a> and get answers from real people who know._______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/