
var PIZZA73_OBJ = {}

PIZZA73_OBJ.MenuItem = function(elementId, mid) { 
  this.elementId = elementId;
  this.menuItemId = mid; 
};

PIZZA73_OBJ.OrderItem = function(elementId, mid) { 
  this.elementId = elementId;
  this.itemId = mid; 
};
//
//PIZZA73.DropDownOption = function(elementId, oid) { 
//  this.elementId = elementId; 
//  this.orderItemId = oid; 
//};

//replacement for CustomObj
//PIZZA73.ItemClick = function(elementId, oid, element) {
//  this.elementId = elementId; 
//  this.orderItemId = oid; 
//  this.element = element;
//};
//
//PIZZA73.ToppingClick = function(elementId, oid, toid, tpid, twoTopper, pType, oType) {
//  this.elementId = elementId; 
//  this.orderItemId = oid;
//  this.toppingItemId = toid;
//  this.toppingProductId = tpid
//  this.twoTopper = twoTopper;
//  this.parentType = pType;
//  this.optionType = oType;
//};

PIZZA73_OBJ.AddOnItem = function(poid, aoid, prop, divItemId) {
  this.parentItemId = poid;
  this.addOnItemId = aoid;
  this.property = prop;
  this.divItemId = divItemId;
};


PIZZA73_OBJ.OptionItem = function(elementId, id) { 
  this.elementId = elementId;
  this.id = id; 
};
