The default output from Drupal's Form API is:
<input id="edit-submit" class="form-submit" type="submit" value="Save" name="op"/>
How do I theme that so I get:
<button id="edit-submit" class="form-submit" type="submit">
<span>Save</span>
</button>
I need the inner span-tag so I can use the sliding doors CSS technique.
I guess I need to override theme_button($element) from form.inc but my attempts so far have been unsuccessful.