$(function(){
  //
  // track email links
  //
  $('a[href^=mailto]').click(function(){
    pageTracker._trackPageview('/EmailSent');
    return true;
  });

  //
  // menu
  //
  function hideMenu(s) {
    if (!s.length) return;
    s.data('menu-hide', true);
    setTimeout(function(){
      if (s.data('menu-hide'))
        s.hide();
      s.data('menu-hide', false);
    }, 500);
  }

  function showMenu(s) {
    if (s.length) {
      s.data('menu-hide', false);
      s.show();
    }
  }

  $('.menutd').hover(function(){
    var t = $(this);
    t.addClass('hover');
    showMenu(t.find('ul'));
  }, function(){
    var t = $(this);
    t.removeClass('hover');
    hideMenu(t.find('ul'));
  });

  $('.menutd ul').hover(function(){
    showMenu($(this));
  }, function(){
    hideMenu($(this));
  });

  //
  // gallery
  //
  $('.gallery a, .image-popup').lightBox();
});


