$(function() {
  $("#left-links a").hover(function(e) {
    $el = $(this);
    $el.hoverFlow (e.type, {
      width: "162px"
    });
  }, function (e) {
    $el = $(this);
    $el.hoverFlow (e.type, {
      width: "142px"
    });
  });
});

$(function() {
  $("#left-links a#selected").hover(function(e) {
    $el = $(this);
    $el.hoverFlow (e.type, {
      width: "162px"
    });
  }, function (e) {
    $el = $(this);
    $el.hoverFlow (e.type, {
      width: "162px"
    });
  });
});
