jQuery(document).ready(function() {
    
    jQuery('.std .img-block').mouseover(function(item) {
        
        jQuery(this).find(".wrapper").addClass("highlight");
        
    });

    jQuery('.std .img-block').mouseout(function(item) {
        
        jQuery(this).find(".wrapper").removeClass("highlight");
        
    });

});
