$(document).ready(function() {
    $('a.more').click(function(){
		$('div.lang').fadeIn('slow');
		$('a.more').addClass('show');
	})
	$('a.show').click(function() {
		$('div.lang').fadeOut('slow');
		$('a.show').removeClass();
	})
  });

