// JavaScript Document
function showabout(){
	var show_about = document.getElementById("about");
	show_about.style.display = "block";
}

function noneabout(){
	var none_about = document.getElementById("about");
	none_about.style.display = "none";
}

////////////////////////////////////////
