I might be kind of late here..(you probably figured how to do it already), but anyway:
the HTML:
Code:
<div id="GalleryWrapper">
<img id="GalleryImage1" class="ImageNormal" alt="Image1" src="rss.gif" /><img id="GalleryImage2"
alt="Image 2" class="ImageNormal" src="rss2.gif" /><img id="GalleryImage3" alt="" class="ImageNormal"
src="rss_nav.gif" />
</div>
the CSS:
Code:
DIV#GalleryWrapper {
width: auto;
height: auto;
padding: 3px 3px 3px 3px; /* T R B L */
text-align: left;
vertical-align: top;
}
DIV#GalleryWrapper IMG {
border: none;
cursor: pointer;
}
IMG.ImageNormal {
width: 16px;
height: 16px;
margin: 3px 3px 3px 3px; /* T R B L */
}
IMG.ImageNormal:link, IMG.ImageNormal: visited {
width: 16px;
height: 16px;
margin: 3px 3px 3px 3px; /* T R B L */
}
IMG.ImageNormal:hover {
width: 20px;
height: 20px;
margin: 1px 1px 1px 1px; /* T R B L */
}

hope this helps,
Costin