/**
 * Blit Shows Progress plugin 1.0
 *
 * Copyright (c) 2008 Blit, Inc (http://blit.com/)
 * MIT license (blit.com/licenses/mit.html)
 */

jQuery.fn.shows_progress = function() {
  return $(this).find("button[type='submit']").click(function(){
    $(this).parents('span.shows_progress:first')
      .wrapInner('<div></div>').find('div:first').hide().end()
      .append('<img src="/images/upload_loader.gif"/>');
  });
}
    
