function Site(title) {	this.title = title;	this.getPage = site_getPage;}function site_getPage(getPageId) {	return this[getPageId];}