jQuery(function() {
  jQuery('.only-once').after(
    jQuery('<div id="only-once-spinner"/>')
      .css('background', 'transparent url("/img/ajax-loader.gif") no-repeat 50% 50%')
  );
  jQuery('.only-once').parents('form:first').submit(function() {
    jQuery('#only-once-spinner')
      .css('width', jQuery('.only-once')[0].offsetWidth + 'px')
      .css('height', jQuery('.only-once')[0].offsetHeight + 'px');
    jQuery('.only-once').hide();
    jQuery('#only-once-spinner')
      .show();

    return true;
  });
});

