$(function() {
   $('#contactForm').bind('submit', function() {
      var postFields = {
          action : 'contact'
         ,fullName : $('#fullName').val()
         ,phone : $('#phone').val()
         ,email : $('#email').val()
         ,comment : $('#comment').val()
      };
      var completedFn = function() {
         var container = $(".contactFormContainer");
         container.html("<div style=\"text-align: center;\">Thank-you, your message has been delivered. We will respond to your message as soon as possible.<br /><br /> In the meantime, please <a href=\"/new/my-listings/\">check out our listings</a></div>");
      };
      $.post('/new/leaderAjax.php', postFields, completedFn);
      return false;
   });
   
   $('#leadForm').live('submit', function() {
      var postFields = {
          action : 'listing'
         ,listingId : $("#listingId").val()
         ,fullName : $('#lead_fullName').val()
         ,email : $('#lead_mail').val()
         ,comment : $('#lead_comment').val()
      };
      
      var completedFn = function() {
         var container = $("#leadUs");
         container.html("<div style=\"text-align: center;\">Thank-you, your message has been delivered. We will respond to your message as soon as possible.<br /><br /> In the meantime, please <a href=\"/new/my-listings/\">check out our listings</a></div>");
      };
      
      $.post('/new/leaderAjax.php', postFields, completedFn);
      
      return false;
   });
});