function showCountries(cont){
	$(".countryList").hide();
	$("#countries"+cont).show("normal");

}

$(document).ready(function() {
	//oznacevanje aktivnega taba v glavnem meniju
	//tips
	if ($(".navSub .item57").length > 0 || $(".navSub .item58").length > 0 || $(".navSub .item59").length > 0 || $(".navSub .item60").length > 0) {
		$(".navMain .item55").addClass("active");
	}
	//community
	else if ($(".navSub .item62").length > 0 || $(".navSub .item63").length > 0 || $(".navSub .item64").length > 0) {
		$(".navMain .item54").addClass("active");
	}
});