// Needed for 4th Level Links grey line
function loadLinks() {

    var navLinks = new Array();

		navLinks[0] = new LeftLink('Transferring Patients', 'http://www.nyp.org/allenpavilion/pro/transferring.html', '2', '', '');
		navLinks[1] = new LeftLink('Healthcare Education', 'http://www.nyp.org/allenpavilion/pro/education/index.html', '2', '', '');
		navLinks[2] = new LeftLink('Medical Schools', 'http://www.nyp.org/allenpavilion/pro/education/medical.html', '3', 'Healthcare Education', '');
	    navLinks[3] = new LeftLink('Residency and Fellowship Training', 'http://www.nyp.org/allenpavilion/pro/education/residency.html', '3', 'Healthcare Education', '');
	    navLinks[4] = new LeftLink('Continuing Education', 'http://www.nyp.org/allenpavilion/pro/education/continuing.html', '3', 'Healthcare Education', '');
	    navLinks[5] = new LeftLink('Alumni News', 'http://www.nyp.org/allenpavilion/pro/education/alumni.html', '3', 'Healthcare Education', '');
		navLinks[6] = new LeftLink('Libraries and Links', 'http://www.nyp.org/allenpavilion/pro/links/index.html', '2', '', '');
		navLinks[7] = new LeftLink('Medical Libraries', 'http://www.nyp.org/allenpavilion/pro/links/libraries.html', '3', 'Libraries and Links', '');
		navLinks[8] = new LeftLink('Newsletters', 'http://www.nyp.org/allenpavilion/pro/newsletter.html', '2', '', '');

    return (navLinks);
}