jQuery.noConflict();
/*
function langChooser() {
  //jQuery('#region-select ul').css({'height' : '0', 'overflow' : 'hidden', 'opacity' : '0'});
  jQuery('#region-select ul').css('opacity','0');
  jQuery('#region-select .selector').toggle(
    function() {
      jQuery('#region-select ul').fadeTo('slow', 0.8);
    },
    function() {
      jQuery('#region-select ul').fadeTo('slow', 0);
    }
  );
}
*/
function langChooser() {
  //listHeight = jQuery('#region-select ul').css('height');
  jQuery('#region-select ul').css({'height' : '0', 'overflow' : 'hidden', 'opacity' : '0'});
  jQuery('#region-select .selector').toggle(
    function() {
      jQuery('#region-select ul').animate({
        opacity: 0.91,
        //height: listHeight
        height: '190px'
      }, 350);
      jQuery('html').click(function() {
         jQuery('#region-select ul').css({'height' : '0', 'overflow' : 'hidden', 'opacity' : '0'});
      });  
    },
    function() {
        jQuery('#region-select ul').animate({
        opacity: 0.0,
        height: '0px'
      }, 350);  
    }
  );
}

function init() {
langChooser();
}

jQuery(init);