jQuery(function(){
    jQuery(".continents li").click(function(){
		jQuery(this).parents(".nationChoose").find(".nations").hide();
		jQuery(this).parents(".nationChoose").find(".nations").eq(jQuery(this).index()).show();
		jQuery(this).siblings("li").removeClass("active");
		jQuery(this).addClass("active");
		return false;
	})
    jQuery(".continents li.active").click();
});
