// SHOW CALLOUTS BY CONTINENT
function showNA(str) {
    $("dl.region-callout").hide();
    $("#na").animate({ opacity: "show" }, "fast");
}
function showSA(str) {
    $("dl.region-callout").hide();
    $("#sa").animate({ opacity: "show" }, "fast");
}
function showEurope(str) {
    $("dl.region-callout").hide();
    $("#europe").animate({ opacity: "show" }, "fast");
}
function showAsia(str) {
    $("dl.region-callout").hide();
    $("#asia").animate({ opacity: "show" }, "fast");
}
function showAfrica(str) {
    $("dl.region-callout").hide();
    $("#africa").animate({ opacity: "show" }, "fast");
}
function showAustralia(str) {
    $("dl.region-callout").hide();
    $("#aust").animate({ opacity: "show" }, "fast");
}


// SHOW NORTH AMERICA CALLOUTS ON LOAD
$(document).ready(function() {
    showNA('test');
});

function showCountry(country) {
    $("dl.region-callout").hide();
    $('#'+country).fadeIn('slow');
}