// Berwick Page Functions

function MenuDisplay(menuId, showbuttonId, op) {

	if(document.getElementById(menuId) && document.getElementById(showbuttonId)) {

		var menu = document.getElementById(menuId);
		var button = document.getElementById(showbuttonId);
		var content = document.getElementById('content-inner');


		switch(op) {
			case 'show':
				menu.style.display = 'block';
				button.style.display = 'none';
				content.style.padding = '0 170px 0 0';
				break;
	
			case 'hide':
				menu.style.display = 'none';
				button.style.display = 'block';
				content.style.padding = '0';
				break;
		}
	}
}
