$(function() {
  $('#wines a').click(function() {
    var target = $($(this).attr('href'));
    
    $('.popup').hide();
    target.show();
    
    var x = $(this).position().left - $(this).parents('ul').position().left + $(this).width()/2 - 15;
    
    $('#arrow').css({
      visibility: 'visible',
      left: x
    });
    
    return false;
  });
  
  $('.popup:not(#default)').prepend('<div class="arrow" />');
});
