﻿// JavaScript functions for Restaurant module user controls.

/* MenusView.ascx */
var menusView_lastCategoryID = "";
function menusView_category_onClick(id)
{
	//get previous container to hide
	var container = document.getElementById("Category" + menusView_lastCategoryID);
	if (container)
		container.style.display = "none";
		
	//get new container to show
	container = document.getElementById("Category" + id);
	if (container)
		container.style.display = "block"
		
	menusView_lastCategoryID = id;
}