/*******************************************************************************
 * © 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 = '<a href="http://www.outfitters.com" target="_blank">Site Designed by Infobahn Outfitters, Inc</a>.<br />Copyright &copy;';
	}
}

/***
 * 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;
}