Give all your divs a class.
use
$('.class').hover(function () {
// fade in the div in this object.
$(this).children('.hidden').fadeIn(50);
});
first you add a hover state to all divs that have your class.
once it get's triggered that div is going to show the div with the class .hidden