siteNav = new Array();
siteNavSub = new Array();
siteNavChannelId = new Array();
arrCnt = -1;

arrCnt++;
arrCntSub = 0;
siteNavChannelId[arrCnt] = 18;
siteNav[arrCnt] = new Array('What is the Fellowship','http://www.nyctf.org/the_fellowship/index.html');
siteNavSub[arrCnt]=new Array();
siteNavSub[arrCnt][arrCntSub++] = new Array('Overview','http://www.nyctf.org/the_fellowship/prgm_overview.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Training & Support','http://www.nyctf.org/the_fellowship/training.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Master\'s Degree & Certification','http://www.nyctf.org/the_fellowship/masters.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Salary & Benefits','http://www.nyctf.org/the_fellowship/salary.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('What Fellows Teach','http://www.nyctf.org/the_fellowship/mayteach.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Teaching in NYC','http://www.nyctf.org/the_fellowship/teach_in_nyc.html');
arrCnt++;
arrCntSub = 0;
siteNavChannelId[arrCnt] = 19;
siteNav[arrCnt] = new Array('Who Can Be a Fellow','http://www.nyctf.org/whocanbe/index.html');
siteNavSub[arrCnt]=new Array();
siteNavSub[arrCnt][arrCntSub++] = new Array('Eligibility','http://www.nyctf.org/whocanbe/eligibility.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('A Diverse Teaching Force','http://www.nyctf.org/whocanbe/diversity.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Career Changers','http://www.nyctf.org/whocanbe/career_change.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Recent College Grads','http://www.nyctf.org/whocanbe/recent_grad.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Math Immersion','http://www.nyctf.org/whocanbe/math_teach.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Science Immersion','http://www.nyctf.org/whocanbe/science_teach.html');
arrCnt++;
arrCntSub = 0;
siteNavChannelId[arrCnt] = 20;
siteNav[arrCnt] = new Array('How Do I Apply','http://www.nyctf.org/how_to_apply/index.html');
siteNavSub[arrCnt]=new Array();
siteNavSub[arrCnt][arrCntSub++] = new Array('Application Process','http://www.nyctf.org/how_to_apply/app_process.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Apply Now','http://www.nyctf.org/how_to_apply/apply.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('June 2010 Program','http://www.nyctf.org/how_to_apply/juneprogram.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Attend an Information Session','http://www.nyctf.org/how_to_apply/info_session.html');
arrCnt++;
arrCntSub = 0;
siteNavChannelId[arrCnt] = 5;
siteNav[arrCnt] = new Array('About NYCTF','http://www.nyctf.org/about/index.html');
siteNavSub[arrCnt]=new Array();
siteNavSub[arrCnt][arrCntSub++] = new Array('Profile of June 2009 Fellows','http://www.nyctf.org/about/fellowship.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Program History and Statistics','http://www.nyctf.org/about/history.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Award for Classroom Excellence','http://www.nyctf.org/about/ACE.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Fellows in the News','http://www.nyctf.org/about/media.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Press Information','http://www.nyctf.org/about/pressinformation.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Contact Us','http://www.nyctf.org/about/contact.html');
arrCnt++;
arrCntSub = 0;
siteNavChannelId[arrCnt] = 22;
siteNav[arrCnt] = new Array('FAQ','http://www.nyctf.org/f_a_q/index.html');
siteNavSub[arrCnt]=new Array();
arrCnt++;
arrCntSub = 0;
siteNavChannelId[arrCnt] = 23;
siteNav[arrCnt] = new Array('Meet A Fellow','http://www.nyctf.org/meet_a_fellow/index.html');
siteNavSub[arrCnt]=new Array();
siteNavSub[arrCnt][arrCntSub++] = new Array('Fellow Profiles','http://www.nyctf.org/meet_a_fellow/profiles.html');
siteNavSub[arrCnt][arrCntSub++] = new Array('Fellow Video Profiles','http://www.nyctf.org/meet_a_fellow/video_profiles.html');


//create array of the cells in the main nav menu
arrNavMainTd = new Array();
arrNavMainTdCnt = 1;
for(i=0;i<siteNavChannelId.length;i++) {
	arrNavMainTd[arrNavMainTdCnt]=siteNavChannelId[i];
	arrNavMainTdCnt++;
	//add a cell if not the last channel
	if (i < siteNav.length-1) {
		arrNavMainTd[arrNavMainTdCnt]='-1';
		arrNavMainTdCnt++;
	}
}

function getSiteNavIdFromChannelId(channelId) {
	siteNavId='-1';
	for (x in siteNavChannelId) {
		if(siteNavChannelId[x]==channelId) {
			siteNavId = x;
		}
	}
	return siteNavId;
}

function siteWriteNavLinksSub(channelId){
	rVal = '';
	siteNavId=getSiteNavIdFromChannelId(channelId);
	
	var currentUrl = document.location.href+'';
	if(siteNavId!='-1'){
		rVal+='<table cellspacing=0 cellpadding=0 border=0 width=100% onmouseover="changeClass(\'navCell_'+channelId+'\',\'tf_navLinkSel\');changeClass(\'navDrop_'+channelId+'\',\'tf_navLinkSel\');">';
		rVal+='<tr align=center class=tf_navLinkSub height=19>';
		rVal+='<td width=10><br></td>';
		for(j=0;j<siteNavSub[siteNavId].length;j++) {
			rVal+='<td onclick="goToUrl(\''+siteNavSub[siteNavId][j][1]+'\');" onmouseover="this.className=\'tf_navLinkSubSel\'";  onmouseout="this.className=\'tf_navLinkSub\'";  ';
			if(siteNavSub[siteNavId][j][1]==currentUrl){
				rVal+='class=tf_navLinkSubSel';
			} else {
				rVal+='class=tf_navLinkSub';
			}
			rVal+=' style="cursor:pointer;" >';
			rVal+='<a href='+siteNavSub[siteNavId][j][1]+'>';
			rVal+=siteNavSub[siteNavId][j][0];
			rVal+='</a>';
			rVal+='</td>';
			if(j<siteNavSub[siteNavId].length-1){
				rVal+='<td>|</td>';
			}
		}
		rVal+='<td width=10><br></td>';
		rVal+='</tr>';
		rVal+='</table>';
	} else {
		rVal+='<table cellspacing=0 cellpadding=0 border=0 width=100% bgcolor=#F7F7F5>';
		rVal+='<tr align=center height=19>';
		rVal+='<td> <br></td>';
		rVal+='</tr>';
		rVal+='</table>';
	}
	
	return rVal;
}

function siteOverWriteNav(channelId){
	changeNavClass(channelId);
	document.getElementById('divSiteNav').innerHTML=siteWriteNavLinksSub(channelId);
}

function goToUrl(url) {
	if (url) {
		document.location.href=url;
	}
}
function changeClass(id,className) {
	if (id && className) {
		if (document.getElementById(id)) {
			document.getElementById(id).className=className;
		}
	}
}
function changeNavClass(currentId){
	var i;
	
	
	for (i=1;i<arrNavMainTd.length;i++){
		
		if (arrNavMainTd[i]>-1) {
			changeClass('navCell_'+arrNavMainTd[i],'tf_navLink');
			changeClass('navDrop_'+arrNavMainTd[i],'tf_navBg');
		} else {
			
			changeClass('navPipe_'+(i),'tf_navLink');
			changeClass('navDropPipe_'+(i),'tf_navBg');
		}
	}
	
	changeClass('navCell_'+currentId,'tf_navLinkSel');
	changeClass('navDrop_'+currentId,'tf_navLinkSel');

	
	for (i=1;i<arrNavMainTd.length;i++){
		
		if (arrNavMainTd[i]>-1) {
			iNext = i+1;
			iPrev = i-1;
			if (currentId == arrNavMainTd[i]) {
				
				if (iPrev>0) {
					changeClass('navPipe_'+(iPrev),'tf_navPipeSel');
					changeClass('navDropPipe_'+(iPrev),'tf_navPipeSel');
				}
				
				if (iNext<arrNavMainTd.length) {
					changeClass('navPipe_'+(iNext),'tf_navPipeSel');
					changeClass('navDropPipe_'+(iNext),'tf_navPipeSel');
				}
			} 
		}
	}
}

var currentChannelId;
currentChannelId = '';

function tf_glob_header(bPrint) {
			if (bPrint == null) { bPrint = true; }
			html = '';
html += "<!-- start: banner -->";
html += "<table cellspacing=0 cellpadding=0 border=0 class=pagetable>";
html += "<FORM action=http://www.nyctf.org/results.php method=get name=tfSearchForm>";
html += "<tr>";
html += "	<td><A href=\"http://www.nyctf.org/index.html\"><IMG height=67 alt=\"\" src=\"/images/_header_200701.jpg\" width=348 border=0></A><BR></td>";
html += "	<td align=right>";
html += "		<table cellspacing=0 cellpadding=0 border=0>";
html += "                                <tr><td style=line-height:8px; colspan=2><br></td></tr>";
html += "		<tr>";
html += "			<td><a href=http://www.nyctf.org/my><IMG SRC=\"/images/_btn_mynyctf_login.gif\" width=177 height=10 border=0></a><br></td>";
html += "			<td width=17><br></td>";
html += "		</tr>";
html += "		<tr>";
html += "			<td style=\"font-family: Arial; font-weight: bold; font-size: 8pt; color: #BABABA;\">";
html += "			Search:<br>";
html += "			<input type=\"text\" name=\"q\" size=\"25\" style=\"width: 177px; border: 1px solid #BABABA;\"><br>";
html += "			<div align=right><a href=\'\' onclick=\"tfSearchForm.submit();return false;\" style=\"font-family: Arial; font-weight: bold; font-size: 8pt; color: #BABABA;\">Go</a></div>";
html += "			</td>";
html += "			<td><br></td>";
html += "		</tr>";
html += "		</table>";
html += "	</td>";
html += "</tr>";
html += "</form>";
html += "</table>";
html += "<table cellspacing=0 cellpadding=0 border=0 class=pagetable>";
html += "<tr>";
html += "	<td style=line-height:6px;><br></td>";
html += "</tr>";
html += "</table>";
html += "<!-- end: banner -->";
html += "<!-- start: nav -->";
html += "<table cellspacing=0 cellpadding=0 border=0 class=pagetable><tr><td width=10><br></td><td class=tf_navBg>";
html += "	";
html += "	<table cellspacing=0 cellpadding=0 border=0 width=100%><tr><td style=line-height:9px;><br></td></tr></table>";
html += "	<!-- -->";
html += "<table cellspacing=0 cellpadding=0 border=0 width=100%><tr align=center><td id=navCell_18 onmouseover=\"siteOverWriteNav(18);\" onclick=\"goToUrl(\'http://www.nyctf.org/the_fellowship/index.html\');\">What is the Fellowship</td><td id=navPipe_2 class=tf_navLink>|</td><td id=navCell_19 onmouseover=\"siteOverWriteNav(19);\" onclick=\"goToUrl(\'http://www.nyctf.org/whocanbe/index.html\');\">Who Can Be a Fellow</td><td id=navPipe_4 class=tf_navLink>|</td><td id=navCell_20 onmouseover=\"siteOverWriteNav(20);\" onclick=\"goToUrl(\'http://www.nyctf.org/how_to_apply/index.html\');\">How Do I Apply</td><td id=navPipe_6 class=tf_navLink>|</td><td id=navCell_5 onmouseover=\"siteOverWriteNav(5);\" onclick=\"goToUrl(\'http://www.nyctf.org/about/index.html\');\">About NYCTF</td><td id=navPipe_8 class=tf_navLink>|</td><td id=navCell_22 onmouseover=\"siteOverWriteNav(22);\" onclick=\"goToUrl(\'http://www.nyctf.org/f_a_q/index.html\');\">FAQ</td><td id=navPipe_10 class=tf_navLink>|</td><td id=navCell_23 onmouseover=\"siteOverWriteNav(23);\" onclick=\"goToUrl(\'http://www.nyctf.org/meet_a_fellow/index.html\');\">Meet A Fellow</td>";
html += "	</tr>";
html += "	<tr>";
html += "	<td style=line-height:5px; id=navDrop_18 onmouseover=\"siteOverWriteNav(18);\" onclick=\"goToUrl(\'http://www.nyctf.org/the_fellowship/index.html\');\"><br></td><td style=line-height:5px; id=navDropPipe_2><br></td><td style=line-height:5px; id=navDrop_19 onmouseover=\"siteOverWriteNav(19);\" onclick=\"goToUrl(\'http://www.nyctf.org/whocanbe/index.html\');\"><br></td><td style=line-height:5px; id=navDropPipe_4><br></td><td style=line-height:5px; id=navDrop_20 onmouseover=\"siteOverWriteNav(20);\" onclick=\"goToUrl(\'http://www.nyctf.org/how_to_apply/index.html\');\"><br></td><td style=line-height:5px; id=navDropPipe_6><br></td><td style=line-height:5px; id=navDrop_5 onmouseover=\"siteOverWriteNav(5);\" onclick=\"goToUrl(\'http://www.nyctf.org/about/index.html\');\"><br></td><td style=line-height:5px; id=navDropPipe_8><br></td><td style=line-height:5px; id=navDrop_22 onmouseover=\"siteOverWriteNav(22);\" onclick=\"goToUrl(\'http://www.nyctf.org/f_a_q/index.html\');\"><br></td><td style=line-height:5px; id=navDropPipe_10><br></td><td style=line-height:5px; id=navDrop_23 onmouseover=\"siteOverWriteNav(23);\" onclick=\"goToUrl(\'http://www.nyctf.org/meet_a_fellow/index.html\');\"><br></td>";
html += "	</tr>";
html += "	</table>";
html += "	<div id=divSiteNav></div>";
html += "	<scr"+"ipt>siteOverWriteNav(currentChannelId);</scr"+"ipt>";
html += "	";
html += "	<table cellspacing=0 cellpadding=0 border=0 width=100%><tr><td style=line-height:9px;><br></td></tr></table>";
html += "</td><td width=10><br></td></tr></table>";
html += "<table cellspacing=0 cellpadding=0 border=0 class=pagetable>";
html += "<tr>";
html += "	<td style=line-height:17px;><br></td>";
html += "</tr>";
html += "</table>";
html += "<!-- end: nav -->";
if (bPrint) { document.writeln(html); return true; } 
			else { return html;}
}
function tf_glob_left(bPrint) {
			if (bPrint == null) { bPrint = true; }
			html = '';
if (bPrint) { document.writeln(html); return true; } 
			else { return html;}
}
function tf_glob_right(bPrint) {
			if (bPrint == null) { bPrint = true; }
			html = '';
if (bPrint) { document.writeln(html); return true; } 
			else { return html;}
}
function tf_glob_footer(bPrint) {
			if (bPrint == null) { bPrint = true; }
			html = '';
html += "<?php ?>";
html += "<DIV id=tf_copyright>Copyright © 2002-2007 NYC Teaching Fellows. All rights reserved.  |  <A style=\"COLOR: #505050\" ";
html += "href=\"http://www.nyctf.org/about/contact.html\">Contact</A></DIV>";
html += "<scr"+"ipt type=\"text/javascript\">";
html += "    var gaJsHost = ((\"https:\" == document.location.protocol) ? \"https://ssl.\" : \"http://www.\");";
html += "    document.write(unescape(\"%3Cscript src=\'\" + gaJsHost + \"google-analytics.com/ga.js\' type=\'text/javascript\'%3E%3C/script%3E\"));";
html += "</scr"+"ipt>";
html += "<scr"+"ipt type=\"text/javascript\">";
html += "    var pageTracker = _gat._getTracker(\"UA-1420787-1\");";
html += "    pageTracker._trackPageview();";
html += "</scr"+"ipt>";
if (bPrint) { document.writeln(html); return true; } 
			else { return html;}
}
tf_channel = new Array();
tf_channel['11'] = new Array();
tf_channel['11'][tf_channel['11'].length] = new Array('The Fellowship', 'http://www.nyctf.org/accepted/Accepted_overview.html');
tf_channel['11'][tf_channel['11'].length] = new Array('What you may teach as a Fellow', 'http://www.nyctf.org/accepted/mayteach.html');
tf_channel['11'][tf_channel['11'].length] = new Array('Testing information', 'http://www.nyctf.org/accepted/testing.html');
tf_channel['11'][tf_channel['11'].length] = new Array('Borough profiles', 'http://www.nyctf.org/accepted/borough_profiles.html');
tf_channel['11'][tf_channel['11'].length] = new Array('Relocation assistance', 'http://www.nyctf.org/accepted/relocation.html');
tf_channel['11'][tf_channel['11'].length] = new Array('Training & support', 'http://www.nyctf.org/accepted/training.html');
tf_channel['11'][tf_channel['11'].length] = new Array('Types of teaching positions', 'http://www.nyctf.org/accepted/Teaching_positions.html');
tf_channel['11'][tf_channel['11'].length] = new Array('Master’s degree', 'http://www.nyctf.org/accepted/masters.html');
tf_channel['11'][tf_channel['11'].length] = new Array('Certification', 'http://www.nyctf.org/accepted/Certification_transb.html');
tf_channel['11'][tf_channel['11'].length] = new Array('NYCTF newsletters', 'http://www.nyctf.org/accepted/newsletter.html');
tf_channel['11'][tf_channel['11'].length] = new Array('FAQ', 'http://www.nyctf.org/accepted/Accepted_faq.html');
tf_channel['11'][tf_channel['11'].length] = new Array('Know Someone Who Wants to Teach?', 'http://www.nyctf.org/accepted/wanttoteach.html');
tf_channel['11'][tf_channel['11'].length] = new Array('Log out', 'http://www.nyctf.org/accepted/logout.html');
tf_channel['15'] = new Array();
tf_channel['15'][tf_channel['15'].length] = new Array('Apply Now', 'http://www.nyctf.org/apply/apply.html');
tf_channel['25'] = new Array();
tf_channel['12'] = new Array();
tf_channel['12'][tf_channel['12'].length] = new Array('Salary & benefits', 'http://www.nyctf.org/classroomfellows/Salary_benefits.html');
tf_channel['12'][tf_channel['12'].length] = new Array('AmeriCorps', 'http://www.nyctf.org/classroomfellows/AmeriCorps.html');
tf_channel['12'][tf_channel['12'].length] = new Array('Certification', 'http://www.nyctf.org/classroomfellows/certification.html');
tf_channel['12'][tf_channel['12'].length] = new Array('Support & professional development', 'http://www.nyctf.org/classroomfellows/support.html');
tf_channel['12'][tf_channel['12'].length] = new Array('FAQ', 'http://www.nyctf.org/classroomfellows/Classroom_faq.html');
tf_channel['12'][tf_channel['12'].length] = new Array('FellowBlasts', 'http://www.nyctf.org/classroomfellows/Program_updates.html');
tf_channel['12'][tf_channel['12'].length] = new Array('Newsletters', 'http://www.nyctf.org/classroomfellows/newsletters.html');
tf_channel['12'][tf_channel['12'].length] = new Array('NYCTF program documents', 'http://www.nyctf.org/classroomfellows/program_documents.html');
tf_channel['12'][tf_channel['12'].length] = new Array('FellowForum', 'http://www.nyctf.org/classroomfellows/fellowfourm.html');
tf_channel['12'][tf_channel['12'].length] = new Array('FellowShare', 'http://www.nyctf.org/classroomfellows/fellowshare.html');
tf_channel['12'][tf_channel['12'].length] = new Array('Know Someone Who Wants to Teach?', 'http://www.nyctf.org/classroomfellows/wanttoteach.html');
tf_channel['12'][tf_channel['12'].length] = new Array('Certification', 'http://www.nyctf.org/classroomfellows/certification.html');
tf_channel['12'][tf_channel['12'].length] = new Array('Log out', 'http://www.nyctf.org/classroomfellows/logout.html');
tf_channel['13'] = new Array();
tf_channel['13'][tf_channel['13'].length] = new Array('New Fellows Bulletins', 'http://www.nyctf.org/trainingfellows/Allfellows.html');
tf_channel['13'][tf_channel['13'].length] = new Array('Testing information', 'http://www.nyctf.org/trainingfellows/testing.html');
tf_channel['13'][tf_channel['13'].length] = new Array('Training & support', 'http://www.nyctf.org/trainingfellows/training.html');
tf_channel['13'][tf_channel['13'].length] = new Array('Region profiles', 'http://www.nyctf.org/trainingfellows/Region_profiles.html');
tf_channel['13'][tf_channel['13'].length] = new Array('Borough profiles', 'http://www.nyctf.org/trainingfellows/borough_profiles.html');
tf_channel['13'][tf_channel['13'].length] = new Array('Salary & benefits', 'http://www.nyctf.org/trainingfellows/salary.html');
tf_channel['13'][tf_channel['13'].length] = new Array('Certification', 'http://www.nyctf.org/trainingfellows/certification.html');
tf_channel['13'][tf_channel['13'].length] = new Array('FAQ', 'http://www.nyctf.org/trainingfellows/Training_faq.html');
tf_channel['13'][tf_channel['13'].length] = new Array('Know Someone Who Wants to Teach?', 'http://www.nyctf.org/trainingfellows/wanttoteach.html');
tf_channel['13'][tf_channel['13'].length] = new Array('Log Out', 'http://www.nyctf.org/trainingfellows/logout.html');
tf_channel['17'] = new Array();
tf_channel['17'][tf_channel['17'].length] = new Array('Fellow Finder', 'http://www.nyctf.org/hirefellows/fellowfinder.html');
tf_channel['17'][tf_channel['17'].length] = new Array('Subscribe for Principal Updates', 'http://www.nyctf.org/hirefellows/subscribe_newsletter.html');
tf_channel['17'][tf_channel['17'].length] = new Array('NYCTF program overview', 'http://www.nyctf.org/hirefellows/overview.html');
tf_channel['17'][tf_channel['17'].length] = new Array('Program statistics', 'http://www.nyctf.org/hirefellows/statistics.html');
tf_channel['17'][tf_channel['17'].length] = new Array('Retention information', 'http://www.nyctf.org/hirefellows/retention.html');
tf_channel['17'][tf_channel['17'].length] = new Array('Principals\' experience with Fellows', 'http://www.nyctf.org/hirefellows/principal.html');
tf_channel['17'][tf_channel['17'].length] = new Array('Press kit', 'http://www.nyctf.org/hirefellows/presskit.html');
tf_channel['17'][tf_channel['17'].length] = new Array('Certification, training, & support FAQ', 'http://www.nyctf.org/hirefellows/CertTSFAQ.html');
tf_channel['17'][tf_channel['17'].length] = new Array('Hiring process FAQ', 'http://www.nyctf.org/hirefellows/hiring.html');
tf_channel['17'][tf_channel['17'].length] = new Array('Know Someone Who Wants to Teach?', 'http://www.nyctf.org/hirefellows/wanttoteach.html');
tf_channel['14'] = new Array();
tf_channel['14'][tf_channel['14'].length] = new Array('Home Page', 'http://www.nyctf.org/index_export.html');
tf_channel['14'][tf_channel['14'].length] = new Array('versions', 'http://www.nyctf.org/versions.html');
tf_channel['16'] = new Array();
tf_channel['16'][tf_channel['16'].length] = new Array('My NYCTF', 'http://www.nyctf.org/my/index.html');
tf_channel['24'] = new Array();
tf_channel['10'] = new Array();
tf_channel['10'][tf_channel['10'].length] = new Array('The Fellowship', 'http://www.nyctf.org/prospective/fellowship.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Application process', 'http://www.nyctf.org/prospective/applicationprocess.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Attend an information session', 'http://www.nyctf.org/prospective/infosession.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Eligibility', 'http://www.nyctf.org/prospective/eligibility.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Application timeline', 'http://www.nyctf.org/prospective/deadlines.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Apply now', 'http://www.nyctf.org/prospective/apply.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Teaching in NYC', 'http://www.nyctf.org/prospective/teaching_nyc.html');
tf_channel['10'][tf_channel['10'].length] = new Array('What you may teach as a Fellow', 'http://www.nyctf.org/prospective/mayteach.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Math Immersion program', 'http://www.nyctf.org/prospective/math_immersion.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Science Immersion program', 'http://www.nyctf.org/prospective/science_immersion.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Training & support', 'http://www.nyctf.org/prospective/training.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Salary & benefits', 'http://www.nyctf.org/prospective/salary.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Master’s degree', 'http://www.nyctf.org/prospective/masters.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Certification', 'http://www.nyctf.org/prospective/Certification_transb.html');
tf_channel['10'][tf_channel['10'].length] = new Array('FAQ', 'http://www.nyctf.org/prospective/Prospective_faq.html');
tf_channel['10'][tf_channel['10'].length] = new Array('Know Someone Who Wants to Teach?', 'http://www.nyctf.org/prospective/wanttoteach.html');
tf_channel['21'] = new Array();
tf_channel['21'][tf_channel['21'].length] = new Array('Need in NYC Public Schools', 'http://www.nyctf.org/why_be_a_fellow/need_in_nyc.html');
tf_channel['21'][tf_channel['21'].length] = new Array('High-need Subject Areas', 'http://www.nyctf.org/why_be_a_fellow/high_need_subject_areas.html');
tf_channel['18'] = new Array();
tf_channel['18'][tf_channel['18'].length] = new Array('Overview', 'http://www.nyctf.org/the_fellowship/prgm_overview.html');
tf_channel['18'][tf_channel['18'].length] = new Array('Training & Support', 'http://www.nyctf.org/the_fellowship/training.html');
tf_channel['18'][tf_channel['18'].length] = new Array('Master\'s Degree & Certification', 'http://www.nyctf.org/the_fellowship/masters.html');
tf_channel['18'][tf_channel['18'].length] = new Array('Salary & Benefits', 'http://www.nyctf.org/the_fellowship/salary.html');
tf_channel['18'][tf_channel['18'].length] = new Array('What Fellows Teach', 'http://www.nyctf.org/the_fellowship/mayteach.html');
tf_channel['18'][tf_channel['18'].length] = new Array('Teaching in NYC', 'http://www.nyctf.org/the_fellowship/teach_in_nyc.html');
tf_channel['19'] = new Array();
tf_channel['19'][tf_channel['19'].length] = new Array('Eligibility', 'http://www.nyctf.org/whocanbe/eligibility.html');
tf_channel['19'][tf_channel['19'].length] = new Array('A Diverse Teaching Force', 'http://www.nyctf.org/whocanbe/diversity.html');
tf_channel['19'][tf_channel['19'].length] = new Array('Career Changers', 'http://www.nyctf.org/whocanbe/career_change.html');
tf_channel['19'][tf_channel['19'].length] = new Array('Recent College Grads', 'http://www.nyctf.org/whocanbe/recent_grad.html');
tf_channel['19'][tf_channel['19'].length] = new Array('Math Immersion', 'http://www.nyctf.org/whocanbe/math_teach.html');
tf_channel['19'][tf_channel['19'].length] = new Array('Science Immersion', 'http://www.nyctf.org/whocanbe/science_teach.html');
tf_channel['20'] = new Array();
tf_channel['20'][tf_channel['20'].length] = new Array('Application Process', 'http://www.nyctf.org/how_to_apply/app_process.html');
tf_channel['20'][tf_channel['20'].length] = new Array('Apply Now', 'http://www.nyctf.org/how_to_apply/apply.html');
tf_channel['20'][tf_channel['20'].length] = new Array('June 2010 Program', 'http://www.nyctf.org/how_to_apply/juneprogram.html');
tf_channel['20'][tf_channel['20'].length] = new Array('Attend an Information Session', 'http://www.nyctf.org/how_to_apply/info_session.html');
tf_channel['5'] = new Array();
tf_channel['5'][tf_channel['5'].length] = new Array('Profile of June 2009 Fellows', 'http://www.nyctf.org/about/fellowship.html');
tf_channel['5'][tf_channel['5'].length] = new Array('Program History and Statistics', 'http://www.nyctf.org/about/history.html');
tf_channel['5'][tf_channel['5'].length] = new Array('Award for Classroom Excellence', 'http://www.nyctf.org/about/ACE.html');
tf_channel['5'][tf_channel['5'].length] = new Array('Fellows in the News', 'http://www.nyctf.org/about/media.html');
tf_channel['5'][tf_channel['5'].length] = new Array('Press Information', 'http://www.nyctf.org/about/pressinformation.html');
tf_channel['5'][tf_channel['5'].length] = new Array('Contact Us', 'http://www.nyctf.org/about/contact.html');
tf_channel['22'] = new Array();
tf_channel['23'] = new Array();
tf_channel['23'][tf_channel['23'].length] = new Array('Fellow Profiles', 'http://www.nyctf.org/meet_a_fellow/profiles.html');
tf_channel['23'][tf_channel['23'].length] = new Array('Fellow Video Profiles', 'http://www.nyctf.org/meet_a_fellow/video_profiles.html');
function tf_channeldata(id) {
				if (typeof(tf_channel[id]) != 'undefined') {
					return tf_channel[id];
				}
			}