/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/
var MENU_ITEMS = [
	[wrap('Home'), '/', {'sb' : "http://www.comhc.net"},
	],
	[wrap('About COMH'), '?page=about', {'sb' : "http://www.comhc.net/?page=about"},
	],
	[wrap('Services'), '?page=services', {'sb' : "http://www.comhc.net/?page=services"},
	],
	[wrap('Locations'), '?page=locations', {'sb' : "http://www.comhc.net/?page=locations"},
	],
	[wrap('Links'), '?page=links', {'sb' : "http://www.comhc.net/?page=links"},
	],
	[wrap('Contact Us'), '?page=contact', {'sb' : "http://www.comhc.net/?page=contact"},
	],
	[wrap('Donate'), '?page=donate', {'sb' : "http://www.comhc.net/?page=donate"},
	],
	[wrap('COMH Login'), '?page=login', {'sb' : "http://www.comhc.net/?page=login"},
	],
];

var MENU_ITEMS2 = [
	[wrap('Home'), '/', {'sb' : "http://www.comhc.net"},
	],
	[wrap('About COMH'), '?page=about', {'sb' : "http://www.comhc.net/?page=about"},
	],
	[wrap('&nbsp;&nbsp;&nbsp;&nbsp;History'), '?page=history', {'sb' : "http://www.comhc.net/?page=history"},
	],
	[wrap('&nbsp;&nbsp;&nbsp;&nbsp;Executive Team<br>&nbsp;&nbsp;&nbsp;&nbsp;Biographies'), '?page=team', {'sb' : "http://www.comhc.net/?page=team"},
	],
	[wrap('&nbsp;&nbsp;&nbsp;&nbsp;News'), '?page=news', {'sb' : "http://www.comhc.net/?page=news", 'yy' : 50},
	],
	[wrap('&nbsp;&nbsp;&nbsp;&nbsp;FAQ'), '?page=faq', {'sb' : "http://www.comhc.net/?page=faq"},
	],
	[wrap('&nbsp;&nbsp;&nbsp;&nbsp;Employment<br>&nbsp;&nbsp;&nbsp;&nbsp;Opportunities'), '?page=employment', {'sb' : "http://www.comhc.net/?page=employment"},
	],
	[wrap('Services'), '?page=services', {'sb' : "http://www.comhc.net/?page=services", 'yy' : 50},
	],
	[wrap('Locations'), '?page=locations', {'sb' : "http://www.comhc.net/?page=locations"},
	],
	[wrap('Links'), '?page=links', {'sb' : "http://www.comhc.net/?page=links"},
	],
	[wrap('Contact Us'), '?page=contact', {'sb' : "http://www.comhc.net/?page=contact"},
	],
	[wrap('Donate'), '?page=donate', {'sb' : "http://www.comhc.net/?page=donate"},
	],
	[wrap('COMH Login'), '?page=login', {'sb' : "http://www.comhc.net/?page=login"},
	],
];

function wrap(caption) {
return caption;
}