var divMinh;
var divJamie;
var divOthers;

var aMinh;
var aJamie;
var aOthers;

var booMinh;
var booJamie;
var booOthers;

window.onload = function hidecontent() {

	booMinh = true;
	booJamie = true;
	booOthers = true;

	divMinh = document.getElementById("divMinh");
	divJamie = document.getElementById("divJamie");
	divOthers = document.getElementById("divOthers");
	aMinh = document.getElementById("aMinh");
	aJamie = document.getElementById("aJamie");
	aOthers = document.getElementById("aOthers");

	divMinh.style.display = "none";
	divJamie.style.display = "none";
	divOthers.style.display = "none"; 
	
	aMinh.onclick = function showMinh() {

		if(booMinh == true) {
			divMinh.style.display = "block";
			booMinh = false;
		} else {
			divMinh.style.display = "none";
			booMinh = true;
		}
	} // showJamie

	aJamie.onclick = function showMinh() {

		if(booJamie == true) {
			divJamie.style.display = "block";
			booJamie = false;
		} else {
			divJamie.style.display = "none";
			booJamie = true;
		}
	} // showMinh
	
	aOthers.onclick = function showOthers() {

		if(booOthers == true) {
			divOthers.style.display = "block";
			booOthers = false;
		} else {
			divOthers.style.display = "none";
			booOthers = true;
		}
	}// showOthers
} // onLoad