/* DO NOT EDIT DIRECTLY BELOW */

createMenuTop();

// 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/to/link/'};

//     leftnav[0][0] = { text:'Link Text', url:'/path/to/link/'};

//         leftnav[0][0][0] = { text:'Link Text', url:'/path/to/link/'};

//

var leftnav = new Array();

/* DO NOT EDIT ABOVE */

leftnav[0] = {text:'About TDDC', url:'/main.html'};
	leftnav[0][0] = {text:'About TDDC', url:'/main.html'};
	leftnav[0][1] = {text:'Company', url:'/company.html'};
leftnav[1] = {text:'Contemporary Dance Festival', url:'/cdf/cdf2010.html'};
	leftnav[1][0] = {text:'2010 CDF', url:'/cdf/cdf2010.html'};
//	leftnav[1][1] = {text:'Apply', url:'/cdf/apply.html'};
	leftnav[1][1] = {text:'Past Years', url:'/cdf/cdf-past.html'};
leftnav[2] = {text:'Events', url:'/events.html'};
leftnav[3] = {text:'At Work', url:'/multimedia/images.html'};
	leftnav[3][0] = {text:'Images', url:'/multimedia/images.html'};
	leftnav[3][1] = {text:'Video', url:'/multimedia/video.html'};
	leftnav[3][2] = {text:'Send Photo E-Cards', url:'http://selena.uwiep.com/pd/tddc_ecards.html'};
leftnav[4] = {text:'Press', url:'/press.html'};
leftnav[5] = {text:'Contribute Now', url:'/contribute.html'};
leftnav[6] = {text:'Contact', url:'/contact.php'};
	
/* DO NOT EDIT BELOW */

leftnavBuild( leftnav );

createMenuEnd();

/* DO NOT EDIT DIRECTLY ABOVE */


