<!--
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") anchor.target = "_blank";
	}
}

function setHand() {
	if(elm = document.getElementById("lnkHome")) elm.style.cursor='hand';
}

/* Saved here for backgroundImage changing code */
function chgHeader(hed) {
	elm = document.getElementById('hedr');
	if(hed == 'i') newImage = "url(images/HeaderGeorgia669.jpg)";
	else if(hed == 't') newImage = "url(images/HeaderTahoma.jpg)";
	else  newImage = "url(images/HeaderGeorgia.jpg)";
	elm.style.backgroundImage = newImage;
}

function init() {
	externalLinks();
	setHand();
	if(window.imagearray) showInit();
	window.focus();
}
window.onload = init;

//-->