jQuery hover function gives mouseover and mouseout functionality.
$(selector).hover(inFunction,outFunction);
$(".item-image").hover(function () {
// mouseover event codes...
}, function () {
// mouseout event codes...
});
Source: http://www.w3schools.com/jquery/event_hover.asp