Strange Jquery Ajax toggle issue...

Strange Jquery Ajax toggle issue...

I am having a strange issue and I wanted to know if anybody has experienced this...

I have a simple ajax feature like I listed below... And I have a set of buttons... When you click a button, it calls this ajax and populates a div container... Pretty simple stuff...

Problem is... That if I click from button to button a few times, the div container seems to flicker really bad, it seems like it flips back and forth between the previous content and the new content... It is not a delay thing, but moreso it seems to have some sort of bug somewhere... It toggles between the old content and new content... It is really strange...

Has anyone experienced this?
Any information would help me out, I have NO idea what to call this or where to look.

  1.  function vtTab(URL)
    {

    $.ajax({url: URL, success:function(data){

    $("#ViewTopicContent").html(data);

    vtNav();
    playVideo();
    videoThumbs();
    change_response_page();
    change_comment_page();
    navigateVideo();
    submitCommentForm();

    }});

    }