Using button and images

Every form has some kind of 'submit' button. Some times you just don't want to use the standard control for the submit button, or you don't want to style it. You might use an image. Or, you might use button. How do you make sure that whatever type of button you use is accessible?

The Form

1.

2.

3.

The HTML

1. <input type="submit" value="Submit">

2. <input type="image" name="search" src="search.gif" alt="Go"/>

3. <button name="submit" type="submit">
<img src="images/search03go.gif" alt="Go"/> Search Now!
</button>

or

3. <button name="submit" type="submit">
<img src="images/search03go.gif" alt=""/>Search Now!
</button>