function prepareLinks() {
	var activeTab = Array ();
	activeTab["about"] = 1;
	activeTab["locations"] = 0;
	activeTab["spotlight"] = 0;
	activeTab["getInvolved"] = 0;
	var imgSRC= Array();
	imgSRC["tabAbout"] = "url(/images/toAbout.gif)";
	imgSRC["tabLocations"] = "url(/images/toLocations.gif)";
	imgSRC["tabSpotlight"] = "url(/images/toSpotlight.gif)";
	imgSRC["tabGetInvolved"] = "url(/images/toGetInvolved.gif)";
	var imgSRC_f1= Array();
	imgSRC_f1["tabAbout"] = "url(/images/toAbout_f1.gif)";
	imgSRC_f1["tabLocations"] = "url(/images/toLocations_f1.gif)";
	imgSRC_f1["tabSpotlight"] = "url(/images/toSpotlight_f1.gif)";
	imgSRC_f1["tabGetInvolved"] = "url(/images/toGetInvolved_f1.gif)";
	var imgSRC_f2= Array();
	imgSRC_f2["tabAbout"] = "url(/images/toAbout_f2.gif)";
	imgSRC_f2["tabLocations"] = "url(/images/toLocations_f2.gif)";
	imgSRC_f2["tabSpotlight"] = "url(/images/toSpotlight_f2.gif)";
	imgSRC_f2["tabGetInvolved"] = "url(/images/toGetInvolved_f2.gif)";
	var tabBodyID= Array();
	tabBodyID["tabAbout"] = "about";
	tabBodyID["tabLocations"] = "locations";
	tabBodyID["tabSpotlight"] = "spotlight";
	tabBodyID["tabGetInvolved"] = "getInvolved";
	var tabBodyList = Array("about","locations","spotlight","getInvolved");
	var tabList= Array("tabAbout","tabLocations","tabSpotlight","tabGetInvolved");
	var toTabs = document.getElementById("tabs");
	var links = toTabs.getElementsByTagName("a");
	for (i=0;i<links.length;i++) {
		links[i].onmouseover = function() {
			if (activeTab[tabBodyID[this.id]] != 1) {
				this.style.backgroundImage = imgSRC_f1[this.id];
			}
		}
	}
	for (i=0;i<links.length;i++) {
		links[i].onmouseout = function() {
			if (activeTab[tabBodyID[this.id]] != 1) {
				this.style.backgroundImage = imgSRC[this.id];
			}
		}
	}
	for (i=0;i<links.length;i++) {
		links[i].onclick = function() {
			for (count=0;count<tabBodyList.length;count++) {
				var tabDiv = document.getElementById(tabBodyList[count]);
				if (tabBodyID[this.id] == tabBodyList[count]) {
					tabDiv.style.display = "inline";
					activeTab[tabBodyList[count]]=1;
					var tabLink = document.getElementById(tabList[count]);
					tabLink.style.backgroundImage = imgSRC_f2[tabList[count]];
				} else {
					tabDiv.style.display = "none";
					activeTab[tabBodyList[count]]=0;
					var tabLink = document.getElementById(tabList[count]);
					tabLink.style.backgroundImage = imgSRC[tabList[count]];
				}
			}
			return false;
		}
	}
}
