document.observe('dom:loaded', function(evt) {
	var current_local = geoip_country_code();
	var items = $$('.country_code_filter');
	
	if ($$('.id-' + geoip_country_code().length > 0))
	{
		for (var i = 0; i < items.length; i++) {
			var item = items[i];
			if (!item.classNames().any(
			  function(it) {
				  return (it == 'id-' + current_local);
			  })) {
			  item.hide();
			} else {
			  item.show();
			}
		}
	}
});

