It's not hard, just wrap the image and anything you want associated with it in a div.
div.image {
width:20%;
float:left;
text-align:center;
}
div.image p {
text-decoration:italic;
}
then in your html
<h2>Overview</h2>
<div class="image">
<img src="/path/to/image.jpg">
<p>Image Description</p>
</div>
<p>This text will wrap around the image and its
description, if it's long enough.</p>