How to disable the image toolbar
From JumbaWiki
Internet Explorer shows an image toolbar and options for images displayed that can sometimes look ugly or make it easier for people to steal images on a site. This guide shows you how to manually remove it within the code of your page.
Entire Page
You can add this meta tag to the <head> section of the page:
<meta http-equiv="imagetoolbar" content="no" />
Individual Image
If you want to turn off the toolbar for only some images, add a "galleryimg" attribute:
<img src="proprietary.gif" galleryimg="no" />

