// JavaScript Document for show/hide

function show(id){
	if(document.getElementById){
		obj = document.getElementById(id);
			if(obj.style.display == "block"){
				obj.style.display = "";
			} else {
			obj.style.display = "block";
			obj.style.color = "#000000";
			
		}
	}
}

function hide(id){
	if(document.getElementById){
		obj = document.getElementById(id);
//			if(obj.style.display == "none"){
//				obj.style.display = "";
//			} else {
			obj.style.display = "none";
//		}
	}
}

function hideall(){
	hide('navVisualText01');
	hide('navVisualText02');
	hide('navVisualText03');
	hide('navVisualText04');
	hide('navVisualText05');
	hide('navVisualText06');
	hide('navVisualText07');
	hide('navVisualText08');
	hide('navVisualText09');
	hide('navVisualText10');
	hide('navVisualText11');
	hide('navVisualText12');
}