no sé tu estructura pero sería algo así
Código HTML:
Ver original <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> $( function() {
$('.galeria').mouseover(function(){
$('div', this).show();
}).mouseout( function(){
$('div', this).hide();
});
});
.galeria {height:200px; width:200px; float:left; background:#ccc; margin:10px}
.galeria div{display:none}
Uno
Dos
Tres