function kadabra(zap) {
    if (document.getElementById) {
        var abra = document.getElementById(zap).style;
        if (abra.display == "block") {
            abra.display = "none";
           
        } else {
            abra.display = "block";
          
        }
        return false;
    } else {
        return true;
    }
}
function kadabralight(zap) {
	if (document.getElementById) {
		var abra = document.getElementById(zap).style;
		if (abra.display == "block") {
		    abra.display = "none";
		    document.getElementById('nationImg').src = "images/inthenation_white.png";
		  
		} else {
		    abra.display = "block";
		    document.getElementById('nationImg').src = "images/inthenationOn.png";
		   
		}
		return false;
		} else {
		return true;
		}
}
	
function kadabradark(zap) {
    if (document.getElementById) {
        var abra = document.getElementById(zap).style;
        if (abra.display == "block") {
            abra.display = "none";
            document.getElementById('nationImgDark').src = "images/inthenation.png";
        } else {
            abra.display = "block";
            document.getElementById('nationImgDark').src = "images/inthenationOn.png";
        }
        return false;
    } else {
        return true;
    }
}