$(function() {
  $("#your-story a").hover(function(e) {
    $el = $(this);
    $el.hoverFlow (e.type, {
      width: "264px"
    });
  }, function (e) {
    $el = $(this);
    $el.hoverFlow (e.type, {
      width: "221px"
    });
  });
});
