$(function() {

    $(".topbox").hover(function(e){
    
        $el = $(this);
        
        $el.hoverFlow(e.type, {
            height: "110px"
        });
    
    }, function(e) {
    
        $el = $(this);
        
        $el.hoverFlow(e.type, {
            height: "25px"
        });
    
    });

});

$(function() {

    $(".topbox-first").hover(function(e){
    
        $el = $(this);
        
        $el.hoverFlow(e.type, {
            height: "110px"
        });
    
    }, function(e) {
    
        $el = $(this);
        
        $el.hoverFlow(e.type, {
            height: "25px"
        });
    
    });

});

$(function() {

    $(".topbox-last").hover(function(e){
    
        $el = $(this);
        
        $el.hoverFlow(e.type, {
            height: "110px"
        });
    
    }, function(e) {
    
        $el = $(this);
        
        $el.hoverFlow(e.type, {
            height: "25px"
        });
    
    });

});