click function with .load problem

click function with .load problem

I have a contact form located here www.dirtybirddesignlab.com/Kinetick/support.php
the form runs a validation routine then submits via ajax and displays a thank you message. Inside the thank you is a link to submit another request, which has this applied to it.

$(document).ready(function(){
      $('.foo').click(function(){
        $('#thankYou').remove();
        $('#formContain').load('support #request');
      });
    });

when clicking the link, it properly displays the form again, but on the second go around (already submitted, submit another etc.) it doesn't use the validation or the ajax submit. Im sure this is easy for you seasoned jquery vets, I sure could use your help!

Thanks in adavance
Kane