
function treeinit() {
  if(parseInt(navigator.appVersion) < 4) {
    alert("Sorry, a 4.0+ browser is required to view this demo.");
    return;
  }
  var width=175, height = 22;
  var bgColor = "#ffdddd";
  l = new List(true, width, height, bgColor);
  l.setFont("<FONT FACE='Arial,Helvetica' COLOR='#660000' SIZE=-1'><B>","</B></FONT>");
    m = new List(true, width, height, bgColor);
    m.setFont("<FONT FACE='Arial,Helvetica' SIZE=-1'>","</FONT>");
    m.addItem("<a href='/home/foundationcoalition/vision.htm'>Vision</a>");
    m.addItem("<a href='/home/foundationcoalition/mission.htm'>Mission</a>");
    m.addItem("<a href='/home/foundationcoalition/corevalues.htm'>Core Values</a>");
    m.addItem("<a href='/home/foundationcoalition/corecompetencies.htm'>Core Competencies</a>");
    m.addItem("<a href='/home/foundationcoalition/strategicobjectives.htm'>Strategic Objectives</a>");
	m.addItem("<a href='/home/about/sevenyearplan.htm'>Year 7 Report</a>");
	m.addItem("<a href='/home/construction.htm'>Year 8 Report</a>");
	m.addItem("<a href='/home/foundationcoalition/longrangeteam.htm'>Long Range Team</a>");
  l.addList(m, "Foundation Coalition");
    o = new List(true, width, height, bgColor);
    o.setFont("<FONT FACE='Arial,Helvetica' COLOR='#660000' SIZE=-1'>","</FONT>");
    o.addItem("<a href='/home/projectdirector/directorsmessage.htm'>Director's Message</a>");
    o.addItem("<a href='/home/projectdirector/directorsvideo.htm'>Director's Video</a>");
    o.addItem("<a href='mailto:froyd@ee.tamu.edu'>Contact Information</a>");
  l.addList(o, "Project Director");
    t = new List(true, width, height, bgColor);
    t.setFont("<FONT FACE='Arial,Helvetica' COLOR='#660000' SIZE=-1'>","</FONT>");
    t.addItem("<a href='/home/governingboard/index.htm'>Board Description</a>");
    t.addItem("<a href='/home/governingboard/index.htm'>Members</a>");
  l.addList(t, "Governing Board");
    s = new List(true, width, height, bgColor);
    s.setFont("<FONT FACE='Arial,Helvetica' COLOR='#660000' SIZE=-1'>","</FONT>");
    s.addItem("<a href='/home/keycomponents/collaborative_learning.htm'>Act/Coop Learning</a>");
    s.addItem("<a href='/home/keycomponents/student_teams.htm'>Student Teams</a>");
    s.addItem("<a href='/home/keycomponents/technology_enabled.htm'>Technology</a>");//Tech Enabled Learning
    s.addItem("<a href='/home/keycomponents/minorities.htm'>Minorities</a>");
	s.addItem("<a href='/home/keycomponents/assessment_evaluation.htm'>Assessment & Eval</a>");
	s.addItem("<a href='/home/keycomponents/curriculum_integration.htm'>Integration</a>");//Curriculum
	s.addItem("<a href='/home/construction.htm'>EC2000</a>");
	s.addItem("<a href='/home/construction.htm'>Emerging Tech</a>");
	s.addItem("<a href='/home/keycomponents/firstyearcurriculum.htm'>First Year</a>");
	s.addItem("<a href='/resources/curriculummaterials/designprojects.htm'>Freshman Projects</a>");
	s.addItem("<a href='http://coalition.tamu.edu/Zope/sophomore'>Sophomore</a>");
	s.addItem("<a href='/home/construction.htm'>Upper Division</a>");
	s.addItem("<a href='/events/workshops/index.htm'>Workshops</a>");
	s.addItem("<a href='/surveys/surveys/resources_survey.cfm'>Resources Survey</a>");
	s.addItem("<a href='/surveys/surveys/resources_survey.cfm'>Survey Report</a>");
    //s.addItem("<a href='/home/keycomponents/inclusive_learning.htm'>Learning Communities</a>");
    //s.addItem("<a href='/home/keycomponents/managing_change.html'>Managing Change</a>");
  l.addList(s, "Key Components");
    q = new List(true, width, height, bgColor);
    q.setFont("<FONT FACE='Arial,Helvetica' COLOR='#660000' SIZE=-1'>","</FONT>");
    q.addItem("<a href='http://www.eas.asu.edu'>Arizona State Univ</a>");
	q.addItem("<a href='http://coalition.tamu.edu'>Texas A&M Univ</a>");
	q.addItem("<a href='http://foundation.ea.edu/alabama/alabama.html'>Univ of Alabama</a>");
	q.addItem("<a href='http://www.ece.umassd.edu/'>Univ of Massachusetts</a>");
	q.addItem("<a href='http://foundation-coalition.tamu.edu/home/fcinstitutions/wisconsin_new.htm'>Univ of Wisconsin</a>");
	q.addItem("<a href='http://fc.rose-hulman.edu'>Rose Hulman Inst</a>");
	
  l.addList(q, "FC Institutions");
  l.build(10,160);
}

