without touching the CSS, you could get jQuery to do everything for you.
$('.overlay').fadeTo(0,0); //hide the images to start with
$('.image').hover(function(){
$(this).children('.overlay').fadeTo(200,1)},
function(){
$(this).children('.overlay').fadeTo(200,0)}
);
Moin Zaman
2010-10-27 12:04:51