var states = ['mout', 'mover', 'mdown'],

MENU_ITEMS0 = [
	[wrap_root('Therapy Services', 'd'), '/therapy/', {'bw' : 150}, 
			[wrap_child('Speech', 'star.gif'), '/therapy/speech.html'],
			[wrap_child('Occupational', 'star.gif'), '/therapy/occupational.html'],
			[wrap_child('Behavioral', 'star.gif'), '/therapy/behavioral.html']
	],
	[wrap_root('Special Ed School', 'd'), '/school/', {'sw' : 130},
		[wrap_child('Infant Toddler', 'star.gif'), '/school/infant.html'],
		[wrap_child('Preschool', 'star.gif'), '/school/preschool.html'],
		[wrap_child('Pre-K : Kindergarten', 'star.gif'),'/school/kindergarten.html'],
		[wrap_child('Arbor Bay School', 'star.gif'),'http://www.arborbayschool.org']
		
	],
	[wrap_root('Contract Services','d'),'/contracts/', 
	],
	[wrap_root('About Us', 'd'), '/about/', {'sw' : 90},
		[wrap_child('Staff', 'star.gif'), '/about/staff.html'],
		[wrap_child('Careers', 'star.gif'), '/about/careers.html'],
		[wrap_child('Contact Us', 'star.gif'),'/about/contact.html'],
		[wrap_child('Email Us', 'email.gif'), 'mailto:info@allsinc.com']
	]
];

function wrap_child (text,icon,pos) {
	var res=[];
	for (var i=0; i<3; i++)
		res[i]=['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr height="24"><td>&nbsp;<img height=16 src=', icon != null ? '/images/'+icon+' height=16': '/menu_files/pixel.gif width=15', '></td><td width=100% class=a' + i + '>&nbsp;' + text + '</td>', pos?['<td>&nbsp;<img src=/images/', i, pos, 'arrow.gif width=12 height=12 align=absmiddle></td>'].join(''):'', '</tr></table>'].join('');
	return res;
}

function wrap_root (text,pos) {
	var res=[]; for (var i=0; i<states.length; i++)
		res[i]=['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr height="24"><td width=100% class=a' + i + '>&nbsp;' + text + '</td><td><img src=/images/', i, 'darrow.gif width=12 height=12 align=absmiddle>&nbsp;</td></tr></table>'].join('');
	return res;
}

