// JavaScript Document
function onCategoryPage() {
	var fillCategoryHeader = function() {
		var categoriesArray = [
		["From The Editor's Desk", "logo_from_the_editors_desk.gif", "Military.com editor Ward Carroll sounds off &ldquo;From the Editor&rsquo;s Desk.&rdquo; This weekly podcast features exclusive interviews with newsmakers and military experts that go beyond the headlines."],
		["Glenn Beck", "logo_glenn_beck.jpg", "Check out some of Glenn Beck's most popular podcasts from Headline News over the past two years. Topics range from driving advice from a 91 year old, decorating for Flag Day, a 'Best Of 2006' list and an inspirational story of a racecar pit crew. Join the phenomenon!  Download Glenn Beck's podcasts and watch his show on Headline News every night at 7&9ET. For more information on the Glenn Beck show and his podcast, go to CNN.com/glennbeck.<img src=\"http://ad.doubleclick.net/ad/military.pixel;pix=gbpodchannel;sz=1x1;ord=[timestamp]?\" width=\"1\" height=\"1\" border=\"0\" alt=\"\">"],
		["SpouseBUZZ Talk Radio", "logo_spousebuzz.gif", "A talk show for military spouses by military spouses. SpouseBUZZ is your virtual Family Support Group, a place where you can instantly connect with thousands of other milspouses. Here, we celebrate and embrace the tie that binds us all -- military service."],
		["Tara's Tale", "logo_taras_tale.gif", "Talking. Advising. Learning. Empowering. Tara Crooks hosts &ldquo;Tara&rsquo;s Tale&rdquo;, a weekly podcast sharing resources, tips, conversation, and encouragement for the military spouse &amp; family."]
		]
		for (i=0; i<categoriesArray.length; i++) {
			if (thisCategory == categoriesArray[i][0]) {
				$('category-logo').innerHTML = '<img src="../images/' + categoriesArray[i][1] + '" alt="' + categoriesArray[i][0] + '">';
				$('category-description').innerHTML = categoriesArray[i][2];
			}
		}
	}
	var elements = getElementsByClass('page-category');

	if (elements.length >= 1) {
		fillCategoryHeader();
	}
	return null;
}
<!-- ph=1 -->
<!-- nhm:from_kauri -->
