$(document).ready(function(){
  $('#menu_container').mouseleave(function(){
    $('div.line', this).stop().animate({opacity: 0}, function(){
      $(this).hide();
    });
  });
  $('#menu_container td').mouseenter(function(){
    if(!$('#menu_container div.line').is(':visible'))
      $('#menu_container div.line').css({left: $(this).position().left});
    $('#menu_container div.line').stop().animate({width: $(this).width(), left: $(this).position().left, opacity: 1}, 500);
  });
});
