$(function() {

    $(".menu").hover(function(e){
    
        $el = $(this);
        
        $el.hoverFlow(e.type, {left: "10px"}, 'fast');
    
    }, function(e) {
    
        $el = $(this);
        
        $el.hoverFlow(e.type, {left: "0px"}, 'fast');
    
    });

});