function getElemId(objectID){
	return document.getElementById(objectID);
}
function getElemAll(objectID){
	return document.all[objectID];
}
var getElem = (document.getElementById) ? getElemId : getElemAll;
var gLowElem = getElem("slide");
var gNum = 1;
function swopImage(){
	if(gNum > 8){gNum = 1;}
	gLowElem.src = "image1/ha_pic_" + gNum + ".jpg";
	gNum++;
	setTimeout("swopImage()", 3000);
	return false;
}
swopImage();
self.defaultStatus = "Welcome to the Heavens Above Website";
var gInnerWidth = document.body.clientWidth;
if (!gInnerWidth){gInnerWidth = window.innerWidth;}
if (!gInnerWidth){gInnerWidth = 1100;}
if(gInnerWidth > 1101){
	getElem("wrapper").style.left = ((gInnerWidth - 1100)/2) + "px";
}

