// LowPro behavior to replace dismissable button_to
// with a remote form tag
Event.addBehavior({ 
  'input.dismissable' : function() { 
    Remote.Form.attach(this.up('form')); 
  } 
});


