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

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;
}
