/*******************************************************************************
 * © Copyright 2009. Infobahn Outfitters, Inc.
 * 
 * Infobahn Outfitters, Inc. is a wholly owned subsidiary of McDonough Telephone
 * Cooperative.
 ******************************************************************************/

/***
 * addFooter
 */
function addFooter() {
	if (document.getElementById('_footer') != null) {
		document.getElementById('_footer').innerHTML = 'By <a href="http://media309.com" target="_blank">Media 309</a>.';
	}
}

/***
 * attach footer
 */
if (window.addEventListener) {
	window.addEventListener('load', addFooter, false);
} else if (window.attachEvent) {
	window.attachEvent('onload', addFooter);
} else if (document.getElementById) {
	window.onload = addFooter;
}

