I have few images, which come dynamically from database.
When a user hovers over a image, the name should display below the image.
How can I do this with CSS, or jquery?
Check the image below, this is how it should be.

My code is
<div class="blue_strip_icon" style="padding-right: 15px;">
<a href="<%= pag.page.id %>" class="icon_link">
<img src="<%= @icon %>" title="<%= pag.page.page_title %>" />
</a>
</div>
CSS is
.blue_strip_icon{
float: right;
height: 50px;
padding-top: 10px;
}