// JavaScript Document

function menuOver(name){
	document.getElementById(name+"_p").style.color="#FFFFFF";
}


function menuOut(name){
	document.getElementById(name+"_p").style.color="#000"
	focus()
}


function focus(){
		if(location.pathname.match("/index") == "/index"){
			if(location.pathname.match("v2") == null){
				document.getElementById("home_p").style.color="#FFFFFF";
			}
		}
		
		if(location.pathname.match("introduction") == "introduction"){
			document.getElementById("introduction_p").style.color="#FFFFFF";
		}
		
		
		if(location.pathname.match("screenshot") == "screenshot"){
			document.getElementById("screenshot_p").style.color="#FFFFFF";
		}
		
		
		if(location.pathname.match("download") == "download"){
			document.getElementById("download_p").style.color="#FFFFFF";
		}
		
		
		
		if(location.pathname.match("buyNow") == "buyNow"){
			document.getElementById("buyNow_p").style.color="#FFFFFF";
		}
		
		
		if(location.pathname.match("contactUs") == "contactUs"){
			document.getElementById("contactUs_p").style.color="#FFFFFF";
		}	
}
