// Needed for 4th Level Links grey line
var num4thLevelLinks = 0;

function loadLinks() {

    var aboutLinks = new Array();

    aboutLinks[0] = new LeftLink('Leading the Way', 'http://www.nyp.org/about/lea_way.html', '2', '', '');
    aboutLinks[1] = new LeftLink('Patient Care', 'http://www.nyp.org/about/lea_way_pat.html', '3', 'Leading the Way', '');
	aboutLinks[2] = new LeftLink('Mission', 'http://www.nyp.org/give/mission.html', '3', 'Leading the Way', '');
    aboutLinks[3] = new LeftLink('Education', 'http://www.nyp.org/about/lea_way_edu.html', '3', 'Leading the Way', '');
    aboutLinks[4] = new LeftLink('Research', 'http://www.nyp.org/about/lea_way_res.html', '3', 'Leading the Way', '');
    aboutLinks[5] = new LeftLink('Vision', 'http://www.nyp.org/about/lea_way_vis.html', '3', 'Leading the Way', '');
    aboutLinks[6] = new LeftLink('Achievement', 'http://www.nyp.org/about/lea_way_ach.html', '3', 'Leading the Way', '');
	aboutLinks[7] = new LeftLink('Office of External Relations', 'http://www.nyp.org/oer', '2', '', '');    
	aboutLinks[8] = new LeftLink('Healthcare System', 'http://www.nyp.org/about/hea_sys.html', '2', '', '');
	aboutLinks[9] = new LeftLink('News', 'http://www.nyp.org/about/news.html', '2', '', '');
    aboutLinks[10] = new LeftLink('Hospital News', 'http://www.nyp.org/about/hospitalnews/index.html', '3', 'News', '');
    aboutLinks[11] = new LeftLink('Health in the News', 'http://www.nyp.org/about/healthnews/index.html', '3', 'News', '');
	aboutLinks[12] = new LeftLink('Hospital Leadership', 'http://www.nyp.org/about/hos_lea.html', '2', '', '');
	aboutLinks[13] = new LeftLink('Board of Trustees', 'http://www.nyp.org/about/boa_tru.html', '3', 'Hospital Leadership', '');
    aboutLinks[14] = new LeftLink('Life Trustees', 'http://www.nyp.org/about/hos_lea_lif_tru.html', '3', 'Hospital Leadership', '');
    aboutLinks[15] = new LeftLink('Corporate Officers', 'http://www.nyp.org/about/hos_lea_sen_adm.html', '3', 'Hospital Leadership', '');
	aboutLinks[16] = new LeftLink('History', 'http://www.nyp.org/about/his.html', '2', '', '');
	aboutLinks[17] = new LeftLink('Facts and Statistics', 'http://www.nyp.org/about/hos_stat.html', '2', '', '');
    aboutLinks[18] = new LeftLink('Our National Rankings', 'http://www.nyp.org/about/our_nat_ran.html', '2', '', '');
	
	aboutLinks[18] = new LeftLink('Centers of Excellence', 'http://www.nyp.org/about/center.html', '2', '', '');

    return (aboutLinks);
}

function loadNav4Pages() {

    var rankNav4Links = new Array();
	var archHosNav4Links = new Array();
	var archHeaNav4Links = new Array();
	var rankNav4Pages = new Array();

    rankNav4Links[0] = new LeftLink('Cornell Physicians By Name', 'http://www.nyp.org/about/cornell_name.html', '4', 'Our National Rankings', "America's Top Doctors");
    rankNav4Links[1] = new LeftLink('Cornell Physicians By Specialty', 'http://www.nyp.org/about/cornell_specialty.html', '4', 'Our National Rankings', "America's Top Doctors");
    rankNav4Links[2] = new LeftLink('Columbia Physicians By Name', 'http://www.nyp.org/about/columbia_name.html', '4', 'Our National Rankings', "America's Top Doctors");
	rankNav4Links[3] = new LeftLink('Columbia Physicians By Specialty', 'http://www.nyp.org/about/columbia_specialty.html', '4', 'Our National Rankings', "America's Top Doctors");
	
	archHosNav4Links[0] = new LeftLink('Hospital News 2003', 'http://www.nyp.org/about/hospitalnews/2003.html', '4', 'News', 'Hospital News');
	archHosNav4Links[1] = new LeftLink('Hospital News 2002', 'http://www.nyp.org/about/hospitalnews/2002.html', '4', 'News', 'Hospital News');
		
	archHeaNav4Links[0] = new LeftLink('Health in the News 2003', 'http://www.nyp.org/about/healthnews/2003.html', '4', 'News', 'Health in the News');
	archHeaNav4Links[1] = new LeftLink('Health in the News 2002', 'http://www.nyp.org/about/healthnews/2002.html', '4', 'News', 'Health in the News');
	
	
	rankNav4Pages[0] = new Nav4Page('http://www.nyp.org/about/top_doc_2003.html', rankNav4Links);
    rankNav4Pages[1] = new Nav4Page('http://www.nyp.org/about/cornell_name.html', rankNav4Links);
    rankNav4Pages[2] = new Nav4Page('http://www.nyp.org/about/cornell_specialty.html', rankNav4Links);
	rankNav4Pages[3] = new Nav4Page('http://www.nyp.org/about/columbia_name.html', rankNav4Links);
	rankNav4Pages[4] = new Nav4Page('http://www.nyp.org/about/columbia_specialty.html', rankNav4Links);
	rankNav4Pages[5] = new Nav4Page('http://www.nyp.org/about/hospitalnews/index.html', archHosNav4Links);
	rankNav4Pages[6] = new Nav4Page('http://www.nyp.org/about/hospitalnews/2003.html', archHosNav4Links);
	rankNav4Pages[7] = new Nav4Page('http://www.nyp.org/about/hospitalnews/2002.html', archHosNav4Links);
	rankNav4Pages[8] = new Nav4Page('http://www.nyp.org/about/healthnews/index.html', archHeaNav4Links);
	rankNav4Pages[9] = new Nav4Page('http://www.nyp.org/about/healthnews/2003.html', archHeaNav4Links);
	rankNav4Pages[10] = new Nav4Page('http://www.nyp.org/about/healthnews/2002.html', archHeaNav4Links);
	
	return (rankNav4Pages);

}