function HideContent(d) {
	document.getElementById(d).style.display = "none";
}

function ShowContent(d) {
	document.getElementById(d).style.display = "block";
}

function RollUpAll(){
	ShowContent('cnmenu');
	HideContent('cnmenu_sub');
	ShowContent('cnplusmenu');
	HideContent('cnplusmenu_sub');
	ShowContent('eventsmenu');
	HideContent('eventsmenu_sub');
	ShowContent('admenu');
	HideContent('admenu_sub');
}

function RollDown(d){
	RollUpAll();
	HideContent(d);
	ShowContent(d+'_sub');
}

function RollUp(d){
	ShowContent(d);
	HideContent(d+'_sub');
}
