function ShowCountrySelect() {
	jQuery('#mainnavigation, .box, .link').hide();
	jQuery('#country-locator').fadeIn('slow' );
	//$('#country-locator').fadeTo('fast' , 0.75);

	jQuery('a.select,.country-box a, .countries-list a').click(function() {
		jQuery('#country-locator').hide(400);
		jQuery('#mainnavigation, .box, .link').fadeIn('fast');
	});
}
