	$(function(){
$(".contactTable").hide();
try
{
var defaultCountry = document.nav_form.country.value.toUpperCase();
$("#contact" + defaultCountry).show();
}
catch(e)
{
}
});
function showEcCountry(whatCountry)
{
$(".contactTable").hide();
$("#contact" + whatCountry).show();
}