Here it is:
http://jsfiddle.net/luckmattos/CV9uX/
with Jquery
$('#img').hide();
$('#sidebar').mouseover(function () {
$('#img').show();
});
$('#sidebar').mouseout(function () {
$('#img').hide();
});
HTML
Show on Over