$(document).ready(function(){
	$("#lang").focus(function(){
		$(this).css({ color: "#A6A0A6"});
	});
	$("#lang").click(function(e){
		e.stopPropagation();
		var pos = $("#lang").offset();
		var width = $("#lang").width();
		var fineT = pos.top - -15;
		var fineL = pos.left - 238;
		$("#lang-box").css({ "left": fineL + "px", "top":fineT + "px"});
		$("#lang-box").css({ display : "block"});
	});
	$(document).click(function(){
		$("#lang-box").hide(); 
	});
	$("#lang-box #closeBox").click(function(){
		$("#lang-box").hide(); 
	});

});


