$(document).ready(function(){
	$('#dropdown-langlist li.headlink').hover(
		function() { 
			$('ul', this).css('display', 'block'); 
			var h = $('ul', this).innerHeight();
			h = h + $('div', this).innerHeight();
			$('ul', this).css('margin-top', '-'+ h +'px');
		},
		function() { $('ul', this).css('display', 'none'); });
});