CSS Background Submit Button in a form in Internet Explorer is dull and Grey

Does your input submit form button beautifully styled with CSS to have a background image in Internet Explorer 6 - 9 look like this....

submit-form-button-ie

The default grey filter gradient courtsey of Internet Explorer, not a very pleasant sight.

What you need to do is add an extra CSS attribute to the image 

input[type="submit"] {
filter: none;
}

submit-form-button-ie-no-filter