/* Left Navigation Bar Content

IMPORTANT:
	- Menus MUST include the top level (but it is not displayed).
 	- Menus can go 3 levels deep (including top level).
	- See Tyler Bittner <tyler@med.nyu.edu> for questions.

EXAMPLES:
leftnav[0] = { text:'Link Text', url:'/path/'};
	leftnav[0][0] = { text:'Link Text', url:'/path/sub/'};
		leftnav[0][0][0] = { text:'Link Text', url:'/path/sub/sub'};
*/
createMenuTop();
var leftnav = new Array();
/* DO NOT EDIT ABOVE */

leftnav[0] = {text:'Dept. Home', url:'/sitetmpl_purple/'};
leftnav[1] = {text:'About Us', url:'#'};
leftnav[2] = {text:'Faculty', url:'#'};
leftnav[3] = {text:'Section 1', url:'/sitetmpl_purple/section1/'};
	leftnav[3][0] = {text:'Section 1 - Sub A - Level 2', url:'/sitetmpl_purple/section1/level2/'};
	leftnav[3][1] = {text:'Section 1- Sub A - Level 3', url:'/sitetmpl_purple/section1/level2/level3/'};
leftnav[4] = {text:'Section 2', url:'#'};
leftnav[5] = {text:'Section 3', url:'#'};
leftnav[6] = {text:'Section 4', url:'#'};
leftnav[7] = {text:'Contact Us', url:'#'};

/* DO NOT EDIT BELOW */
leftnavBuild( leftnav );
createMenuEnd();