function ShowLangBox(e)
{
	$(".lang_select").stop(true, true).fadeToggle();

	if ((typeof(e) != "undefined") && (e != null))
	{
		e.stopPropagation();
	}

	return false;
}

$(document).ready(function()
{
	$(document).click(function(e)
	{
		if ($(".lang_select").is(":visible"))
		{
			ShowLangBox(null);
		}
	});
});
