function hideBlock(id) {
	if (!document.getElementById)
		return;
	var block = document.getElementById(id);
	block.className = 'block_hidden';
}
function showBlock(id) {
	if (!document.getElementById)
		return;
	var block = document.getElementById(id);
	block.className = 'block_visible';
}
function hideMenuViewers() {
	hideBlock('menu_viewer1');
	hideBlock('menu_viewer2');
	hideBlock('menu_viewer3');
}

function bringUpMenu(menu2show) {
	animatedcollapse.hide(['menus_full']);
	animatedcollapse.show(['menus_collapse']);
	showBlock(menu2show);
}

function bringUpPrivatePartyMenus() {
	animatedcollapse.hide(['private_dining_info']);
	//animatedcollapse.show(['menus_collapse']);
	showBlock('menu_viewerA1');
}