function togglemessage_one(member) {
var meb = member;
var messageonepanel = document.getElementById("message-one-panel");
var messagetwopanel = document.getElementById("message-two-panel");
var messageonetitle = document.getElementById("message-one-title");
var messagetwotitle = document.getElementById("message-two-title");
if(meb == 1){
	if(messageonepanel.style.display == "none" || !messageonepanel.style.display) {
		messageonepanel.style.display = "block";
		messagetwopanel.style.display = "none";
		messageonetitle.style.borderBottom = "1px solid #D1ECF7";
		messagetwotitle.style.borderBottom = "1px solid #dddddd";
		messageonetitle.style.background = "#D1ECF7";
		messagetwotitle.style.background = "#ffffff";
	}
	else if(messageonepanel.style.display == "block") {
		messageonepanel.style.display = "block";
		messageonetitle.style.borderBottom = "1px solid #D1ECF7";
		messagetwotitle.style.borderBottom = "1px solid #dddddd";
		messageonetitle.style.background = "#D1ECF7";
		messagetwotitle.style.background = "#ffffff";
		
	}
} else if (meb == 2) {
	if(messagetwopanel.style.display == "none" || !messagetwopanel.style.display) {
		messagetwopanel.style.display = "block";
		messageonepanel.style.display = "none";
		messagetwotitle.style.borderBottom = "1px solid #D1ECF7";
		messageonetitle.style.borderBottom = "1px solid #dddddd";
		messagetwotitle.style.background = "#D1ECF7";
		messageonetitle.style.background = "#ffffff";
	}
	else if(messagetwopanel.style.display == "block") {
		messagetwopanel.style.display = "block";
		messagetwotitle.style.borderBottom = "1px solid #D1ECF7";
		messageonetitle.style.borderBottom = "1px solid #dddddd";
		messagetwotitle.style.background = "#D1ECF7";
		messageonetitle.style.background = "#ffffff";
	}
}

}

function togglemessage_two(member) {
var meb = member;
var messagethreepanel = document.getElementById("message-three-panel");
var messagefourpanel = document.getElementById("message-four-panel");
var messagethreetitle = document.getElementById("message-three-title");
var messagefourtitle = document.getElementById("message-four-title");
if(meb == 3){
	if(messagethreepanel.style.display == "none" || !messagethreepanel.style.display) {
		messagethreepanel.style.display = "block";
		messagefourpanel.style.display = "none";
		messagethreetitle.style.borderBottom = "1px solid #D1ECF7";
		messagefourtitle.style.borderBottom = "1px solid #dddddd";
		messagethreetitle.style.background = "#D1ECF7";
		messagefourtitle.style.background = "#ffffff";
	}
	else if(messagethreepanel.style.display == "block") {
		messagethreepanel.style.display = "block";
		messagethreetitle.style.borderBottom = "1px solid #D1ECF7";
		messagefourtitle.style.borderBottom = "1px solid #dddddd";
		messagethreetitle.style.background = "#D1ECF7";
		messagefourtitle.style.background = "#ffffff";
	}
} else if (meb == 4) {
	if(messagefourpanel.style.display == "none" || !messagefourpanel.style.display) {
		messagefourpanel.style.display = "block";
		messagethreepanel.style.display = "none";
		messagefourtitle.style.borderBottom = "1px solid #D1ECF7";
		messagethreetitle.style.borderBottom = "1px solid #dddddd";
		messagefourtitle.style.background = "#D1ECF7";
		messagethreetitle.style.background = "#ffffff";
	}
	else if(messagefourpanel.style.display == "block") {
		messagefourpanel.style.display = "block";
		messagefourtitle.style.borderBottom = "1px solid #D1ECF7";
		messagethreetitle.style.borderBottom = "1px solid #dddddd";
		messagefourtitle.style.background = "#D1ECF7";
		messagethreetitle.style.background = "#ffffff";
	}
}
}