Здорово! Правда, после плавной анимации, не охота возвращаться к css.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Let's do the magnifier</title>
<script src='http://code.jquery.com/jquery-latest.js'></script>
<script type="text/javascript">
$(function() {
$('div a').mouseenter(function() {
$('img.magnifier').fadeIn('100');
});
$('div a').mouseleave(function() {
$('img.magnifier').fadeOut('100');
});
});
</script>
<style>
img.prev {
padding: 4px; border:1px solid grey; box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
img.prev:hover {
box-shadow: 0 0 10px rgba(143, 144, 74, 0.5);
}
img.magnifier {
padding:0;margin:0;border:none;position:absolute; bottom: 24px; right: 10px; z-index:99; display:none;
}
div a {
position:absolute;top:0;left:0;display:inline-block;
}
</style>
</head>
<body>
<div style="position:relative;width:170px; height:130px;">
<img class="magnifier" alt="Опёнок зимний фото" title="" src="http://files.boysgame.su/games/magnifier_.png" width="40" height="40" /><a href="http://files.boysgame.su/games/openok_zimnij-1.jpg" data-lightbox="gallery"><img alt="Опёнок зимний фото" title="" src="http://files.boysgame.su/games/openok_zimnij-1.jpg" class="prev" width="160" height="106" /></a>
</div>
</body>
</html>