/* 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/'};
	leftnav[0][0] = { text:'Link Text', url:'/path/sub/'};
		leftnav[0][0][0] = { text:'Link Text', url:'/path/sub/sub'};
*/
var leftnav = new Array();
/* DO NOT EDIT ABOVE */
leftnav[0] = {text:'CPCD Home', url:'/cvprevention/'};

leftnav[1] = {text:'Our Center', url:'/cvprevention/about/center.html'};
	leftnav[1][0] = {text:'Our Center', url:'/cvprevention/about/center.html'};
	leftnav[1][1] = {text:'Center Team', url:'/cvprevention/about/index.html'};
	leftnav[1][2] = {text:'Support CPCD', url:'/cvprevention/contact/support.html'};
	
leftnav[2] = {text:'CPCD Health', url:'/cvprevention/lipids_health/'};
	leftnav[2][0] = {text:'Scope of the Problem', url:'/cvprevention/lipids_health/'};
	leftnav[2][1] = {text:'CPCD Health', url:'/cvprevention/lipids_health/health.html'};
	leftnav[2][2] = {text:'Self Assessment Test', url:'/cvprevention/lipids_health/test.html'};
	leftnav[2][3] = {text:'Comprehensive Evaluation', url:'/cvprevention/lipids_health/evaluation.html'};
	leftnav[2][4] = {text:'Frequently Asked Questions', url:'/cvprevention/lipids_health/faq.html'};
	
leftnav[3] = {text:'In the News', url:'/cvprevention/news/'};
	leftnav[3][0] = {text:'Popular Press', url:'/cvprevention/news/'};
	leftnav[3][1] = {text:'Medical Journals', url:'/cvprevention/news/journals.html'};
	leftnav[3][2] = {text:'Links To Resources', url:'/cvprevention/news/resources.html'};
	
leftnav[4] = {text:'Research', url:'/cvprevention/research/'};
	leftnav[4][0] = {text:'Laboratory Research', url:'/cvprevention/research/'};
	leftnav[4][1] = {text:'Clinical Trials', url:'/cvprevention/physicians/trials.html'};
	leftnav[4][2] = {text:'Physician Opportunities', url:'/cvprevention/research/physician.html'};
	leftnav[4][3] = {text:'Patient Participation', url:'/cvprevention/research/patient.html'};

leftnav[5] = {text:'For Physicians', url:'/cvprevention/physicians/'};
	leftnav[5][0] = {text:'Patient Evaluation', url:'/cvprevention/physicians/'};
	leftnav[5][1] = {text:'Clinical Trials', url:'/cvprevention/physicians/trials.html'};
	leftnav[5][2] = {text:'Continuing Medical Education', url:'/cvprevention/physicians/ce.html'};
	leftnav[5][3] = {text:'Elective & Fellowship', url:'/cvprevention/physicians/ef.html'};	
	leftnav[5][4] = {text:'Contact Us', url:'/cvprevention/physicians/contact.html'};
	
leftnav[6] = {text:'Contact/Support', url:'/cvprevention/contact/'};
	leftnav[6][0] = {text:'Contact Us', url:'/cvprevention/contact/'};
	leftnav[6][1] = {text:'Support the Center', url:'/cvprevention/contact/support.html'};

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