$(function(){
	/* http://stackoverflow.com/questions/610995/jquery-cant-append-script-element */
	var script = document.createElement('script');
	script.type = 'text/javascript';
	script.src = 'http://j.maxmind.com/app/geoip.js';
	script.async = true;
	document.body.appendChild(script);
	$(script).load(function(){
		if (typeof geoip_country_code == 'function' && geoip_country_code() != 'LT')
		{ // Foreign
			$('html').removeClass('userReadsLt');
		}
	});
});

