function restaurant() {
	this.name='';
	this.territory='';
	this.district='';
	this.address='';
	this.openingtime = new Array();
	this.tel=new Array();
	this.fax=new Array();
	
	this.childs = new Array();
}

restaurant.prototype = {
	addChild : function(m) {
		this.childs[this.childs.length] = m;
	}
}

function Menu() {
	this.contentId = '0';
	this.alt = "";
	this.href = "";
	this.target = "";
	this.Class = "";
	this.menuItem="";
	this.leftpos=0;
	this.childs = new Array();
}

Menu.prototype = {
	addChild : function(m) {
		this.childs[this.childs.length] = m;
	}
}