$(document).ready(function() {initCountrybar();});
function initCountrybar() {
    $('#nation').click(function(e) {toggleCountryBar();});
}
function toggleCountryBar() {
    var world = $('#world');
    if (world.css('display') == 'none') 
    {
        world.fadeIn('slow', function(){});
    } else {
        world.fadeOut('slow', function(){});
    }
}
