//when the DOM is ready
$(function() {

        $("a.hoverable").hover(function(e) {
    
        $(this)
                .hoverFlow(e.type, { left:20 }, 200)
                
                .css('overflow', 'visible')
        }, function(e) {
                    $(this)
                .hoverFlow(e.type, {left:0 }, 200)
                .css('overflow', 'visible')
});

})
