document.observe("dom:loaded", function() {
	if ($$('.headline h2')) aboutNewHdr();
	if ($('help-1')) helpNav();
});

function aboutNewHdr() {
	var x = $$('.headline h2 strong');
	if (x[0].innerHTML.match(": ")) {
		x[0].parentNode.addClassName('about-hdr');
		var xSplitResult = x[0].innerHTML.split(": ");
		x[0].update(xSplitResult[0]);
		x[0].innerHTML;
		var y = document.createElement("h1");
		x[0].parentNode.insert ({ 'after': y });
		var txt = document.createTextNode(xSplitResult[1]);
		y.appendChild(txt);
	}
}

function helpNav() {
	var helpNav1 = '<h3 class="first">Sign up Tools</h3><ul class="links"><li><a href="http://help.channelone.com/pdfs/12-07-07/2008-Link-LeftNav&Contact-Terms.pdf" target="_blank">Participation Terms<br /><em>For new schools in 2008 and beyond</em></a></li><li><a href="http://help.channelone.com/pdfs/12-07-07/2008-Link-LeftNav&Contact-SignForm.pdf" target="_blank">Sign-up Form</a></li><li><a href="http://help.channelone.com/pdfs/12-07-07/2008-Link-LeftNav-FAQs.pdf" target="_blank">FAQs</a></li><li><a href="http://help.channelone.com/pdfs/12-07-07/2008-Link-LeftNav-Facts.pdf" target="_blank">Facts</a></li><li><a href="http://help.channelone.com/pdfs/12-07-07/2008-Link-LeftNav-Reviews.pdf" target="_blank">Peer Reviews</a></li><li class="last"><a href="http://help.channelone.com/pdfs/12-07-07/2008-helpdotcom-navbar-ppt.ppt">PowerPoint Presentation</a></li></ul><h3>Member School Tools</h3><ul class="links"><li><a href="javascript:var w=window.open(\'http://player.theplatform.com/ps/player/pds/CzIgS658Gk\',\'_blank\',\'width=409,height=428\');">Watch Channel One News</a></li><li><a href="/teachers/daily-discussion-guide-quiz.html">Daily Lesson Plan</a></li><li><a href="/teachers/weekly-news-quiz.html">Weekly Quiz</a></li><li><a href="/teachers/edgate/">Correlation to Education Standards</a></li><li><a href="/teachers/channel_one_connection/">Channel One Connection Video Guide</a></li><li><a href="/teachers/advisory_board/">Meet the Board</a></li><li><a href="/help/">Joining and Using Channel One</a></li><li><a href="/help/basic-training/">Basic Training</a></li><li><a href="/help/equipment-tips/">Equipment Tips</a></li><li><a href="/help/troubleshooting/">Troubleshooting</a></li><li><a href="/static/contact/">Contact Us</a></li><li class="last"><a href="http://help.channelone.com/pdfs/12-07-07/2008-Link-LeftNav&Contact-Terms.pdf" target="_blank">Participation Terms<br /><em>For 1989-2007 members</em></a></li></ul><br />';
	var helpNav2 = '<h4 class="center">It\'s easy to connect school equipment to Channel One\'s satellite video system.</h4><p class="center">Click the links below for quick<br />how-to guides.</p><div id="how-to"><div id="xtop"></div><ul><li><a href="http://help.channelone.com/pdfs/12-07-07/2008-Link-EquipmentTips-Camcorder.pdf" target="_blank">Connect a Camcorder<br /><span>To the Channel One Head-end</span></a></li><li><a href="http://help.channelone.com/pdfs/12-07-07/2008-Link-EquipmentTips-Cable.pdf" target="_blank">Connect Local Cable<br /><span>To the Channel One Head-end</span></a></li><li><a href="http://help.channelone.com/pdfs/12-07-07/2008-Link-EquipmentTips-VCRDVDtoHE.pdf" target="_blank">Connect a VCR or DVD-R<br /><span>To the Channel One Head-end</span></a></li><li><a href="http://help.channelone.com/pdfs/12-07-07/2008-Link-EquipmentTips-VCRDVDtoTV.pdf" target="_blank">Connect a VCR or DVD<br /><span>To a Channel One Classroom TV</span></a></li><li><a href="http://help.channelone.com/pdfs/12-07-07/2008-Link-EquipmentTips-Computer.pdf" target="_blank">Connect a Computer<br /><span>To a Channel One Classroom TV</span></a></li><h4>It\'s important, safe and secure for the local tech to connect the new digital head-end to the internet</h4><li><a href="http://help.channelone.com/pdfs/12-07-07/2008-Link-EquipmentTips-DRHtoInternet.pdf" target="_blank">Internet Connection for DRH<br /><span>Click here for everything everyone needs to know about the local tech making this connection.</span></a></li></ul></div>';
	$('help-1').update(helpNav1);
	var pagename = document.location.href;
	if(pagename.match("equipment-tips")) {
		$('help-1').insert ({ 'bottom': helpNav2 });
	}
	$('help-1').innerHTML;
}