var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Home'), 'http://www.ablazesolutions.com/index.htm'],
	[wrap_root('About Us'), 'http://www.ablazesolutions.com/join.htm', null],
	[wrap_root('Careers'), 'mailto:info@ablazesolutions.com?Subject=Careers', null],
	[wrap_root('Products'), 'promotion.htm', null,
		[wrap_child('Web Hosting'), 'http://www.ablazesolutions.com/Hosting.htm'],
		[wrap_child('PCRevolution.ca'),'http://www.pcrevolution.ca']
	],
	[wrap_root('News & Media'), 'media.htm', null],	
	[wrap_root('Portfolio'), null, null,
		[wrap_child('Corporate Sites'), null],
		[wrap_child('Interactive Sites')],
		[wrap_child('Intranet')],
		[wrap_child('Government')],
		[wrap_child('eCommerce')],
		[wrap_child('eLearning')],
		[wrap_child('Database')],
		[wrap_child('Networking')],
		[wrap_child('Marketing')],
		[wrap_child('Ventures')]
	],
	[wrap_root('Promotions'), 'promotion.htm', null],
	[wrap_root('Support'), 'http://www.ablazesolutions.com/contact.htm', null,
		[wrap_child('FAQ'), 'http://www.ablazesolutions.com/faq.htm']
	],
	[wrap_root('Client Login'), 'https://63.247.85.186:2083', null]
	
]

function wrap_child (text) {
	return '&nbsp;&nbsp;' + text + '&nbsp;&nbsp;';
}

function wrap_root (text, c) {
	var res = [];
	for (var i in states)
		res[i] = '<table cellpadding=0 cellspacing=0 border=0 width=100%><tr>' + (c ? '<td>&nbsp;</td>' : '') + '<td valign=middle align=center class=m0' + states[i] + 'i width=100% height=18>&nbsp;&nbsp;' + text + '&nbsp;&nbsp;</td></tr></table>'
	return res;
}