jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox()



  jQuery(document).delegate('form.facebox_form', 'submit', function() {
    jQuery.ajax({
      data: jQuery(this).serialize(),
      type: jQuery(this).attr('method'),
      url: jQuery(this).attr('action'),
      success: function(data) {
        jQuery.facebox(data);
      }
    });

    return false;
  });

})
