// JavaScript Document


function featuresIn(x){
		document.getElementById(x).style.display= "block";

}

function featuresOut(x){
		document.getElementById(x).style.display= "none";
}


/*
	function countrySelect(){
		country1 = document.countrySelector.elements[0].options[document.countrySelector.elements[0].selectedIndex].name;
		document.cookie = "country=" + country1 + "; expires=Thu, 2 Aug 2040 08:00:00 UTC; path = /; domain = zenitharca.com";
		
		window.location.reload();
	}
	
	function startUp(){
		string1 = document.cookie.split("country=");
		string2 = string1[1].split(";");
		
		
		if(string2[0] != "1" && string2[0] != "2"){
				document.getElementById("footer").style.display = "block";
				document.getElementById("footer2").style.display = "none";
		}
		else{
			document.getElementById("footer2").style.display = "block";
			document.getElementById("footer").style.display = "none";
		}
		document.countrySelector.elements[0].selectedIndex = string2[0];
	}
	
	window.onload = startUp
	
	*/







