var states = ['mout', 'mover', 'mdown'],MENU_ITEMS0 = [	[wrap_root('Departments'), null, {'bw': 140, 'sb': 'Departments'},		[wrap_child('Building Materials'), 'bldg_materials.html',{'sb': 'Building Materials', 'tt': 'Lumber, trim, drywall, electrical, paint, plumbing, heating'}],/*		[wrap_child('Major Appliances'), 'appliances.html', {'sb': 'Major Appliances'}], */		[wrap_child('Garden Centre'), 'garden.html', {'sb': 'Garden Centre'}],/*		[wrap_child('Gourmet Shop'), 'gourmet.html', {'sb': 'Gourmet Shop'}],		[wrap_child('Household'), 'household.html', {'sb': 'Household Items'}] */		[wrap_child('Other'), 'other.html', {sb: 'Other Departments', 'tt': 'Gourmet Shop, Major Appliances, Housewares'}]	],	[wrap_root('Services'), null, {'sw':106, 'bw':170, 'sb': 'Services'},		[wrap_child('Homes & Cottages'), 'h_c.html', {'sb': 'Homes and Cottages'}],		[wrap_child('Custom Docks'), 'docks.html', {'sb': 'Custom Docks'}],		[wrap_child('Custom Kitchens'), 'kitchen.html', {'sb': 'Custom Kitchens'}],		[wrap_child('Landscape Products'), 'land.html', {'sb': 'Landscape Products'}],		[wrap_child('Custom Decks & Railings'), 'railings.html', {'sb': 'Custom Decks and Railings'}]	],	[wrap_root('In-store Specials'), 'specials.html', {'sb':'In-store Specials', 'tt': 'Periodic in-store specials'}],	[wrap_root('Catalogues / E-flyer'), 'http://www.homehardware.ca/index/home/', {'sb':'Home Hardware On-line Catalogues', 'tw':'_blank', 'tt': 'Browse on-line catalogues & e-flyer at Home Hardware website'}],	[wrap_root('Supplier Links'), 'links.html' , {'sb': 'Supplier Links', 'tt': 'Links to our supplier sites'}],	[wrap_root('About Us'), 'about.html' , {'sb': 'About Us', 'tt': 'About our store'}],	[wrap_root('Contact Us'), 'contact.html',{'sb': 'Contact Information','tt': 'Contact information including postal & email addresses, phone, fax, and an enquiry form'}]]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><font color=white>|</font></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;}
