$(document).ready( function() {

    $(".text-hidden").hide();

    $(".content-box-2").mouseover( function(event) {
        $(".text-hidden",this).slideDown();
    });

});