If you want to make an image disappear on Internet Explorer 6 in HTML 4 transitional, simply put it in a div (though any block-level element will work) with CSS like:
div { direction: rtl; }
img { vertical-align: top }
Voila, no image. The solution? Eliminate the vertical-align: top rule.