(function() {
	$.attachUpdater(function() {
		var to_lang = null;
		
		$('#shop-shortcuts-language').bind('mouseenter.update', function(event) {
			if (to_lang) clearTimeout(to_lang);
			var pos = $('#shop-help-navigation').position().left + $('#shop-shortcuts-language').position().left;
			$('#shop-shortcuts-language-popup').css('left', pos).show();
		});
		
		$('#shop-shortcuts-language-popup, #shop-shortcuts-language').bind('mouseleave.update', function(event) {
			to_lang = setTimeout(hide_langs, 100);
		});
		
		$('#shop-shortcuts-language-popup').bind('mouseenter.update', function(event) {
			if (to_lang) clearTimeout(to_lang);
		});
		
		function hide_langs() {
			$('#shop-shortcuts-language-popup').hide();
		}
	});
})();
