var load = "no";

if (document.images) {
	family = new Image();
	family.src = "images/navMeet.gif";
	familyOn = new Image();
	familyOn.src = "images/navMeetOn.gif";
	store = new Image();
	store.src = "images/navStore.gif";
	storeOn = new Image();
	storeOn.src = "images/navStoreOn.gif";
	locations = new Image();
	locations.src = "images/navLocations.gif";
	locationsOn = new Image();
	locationsOn.src = "images/navLocationsOn.gif";
	sponsors = new Image();
	sponsors.src = "images/navSponsors.gif";
	sponsorsOn = new Image();
	sponsorsOn.src = "images/navSponsorsOn.gif";
	press = new Image();
	press.src = "images/navPress.gif";
	pressOn = new Image();
	pressOn.src = "images/navPressOn.gif";
	events = new Image();
	events.src = "images/navEvents.gif";
	eventsOn = new Image();
	eventsOn.src = "images/navEventsOn.gif";
	contact = new Image();
	contact.src = "images/navContact.gif";
	contactOn = new Image();
	contactOn.src = "images/navContactOn.gif";

	load = "yes";
}

function imageOn(theimg) {
	if (load == "yes") {
		if (document.images) {
			document[theimg].src = eval(theimg + "On.src");
		}
	}
}

function imageOff(theimg) {
	if (load == "yes") {
		if (document.images) {
			document[theimg].src = eval(theimg + ".src");
		}
	}
}
