document.observe("dom:loaded", function() {

  // CURRENCY SELECTOR DROPDOWN

  $('top-currency-chooser').hide();
  $('top-currency-button').observe('mouseover', function() {
    //console.log('mouse over');
    new Effect.Appear($('top-currency-chooser'), { duration:0.05});
  });

  var timeout;
  $('top-currency-chooser').observe('mouseleave', function(evt) {
      //console.log('mouse leave');
      timeout = setTimeout(function() {
        new Effect.Fade($('top-currency-chooser'), { duration:0.2});
      }, 300);
  });

  $('top-currency-chooser').observe('mouseenter', function(evnt) {
    if (timeout) {
      //console.log('mouse back over');
      clearTimeout(timeout);
    }
  });

  // NAV DROPDOWNS
  
});

