if (version == "ok") {
	books1_on = new Image();
	books1_on.src = "img/home_btn_books1_on.gif";
	books2_on = new Image();
	books2_on.src = "img/home_btn_books2_on.gif";
	books3_on = new Image();
	books3_on.src = "img/home_btn_books3_on.gif";
	mailing_on = new Image();
	mailing_on.src = "img/home_btn_mailing_on.gif";
	stuart_on = new Image();
	stuart_on.src = "img/home_btn_stuart_on.gif";
	mathstart_on = new Image();
	mathstart_on.src = "img/home_btn_mathstart_on.gif";
	familymath_on = new Image();
	familymath_on.src = "img/home_btn_familymath_on.gif";
	visual_on = new Image();
	visual_on.src = "img/home_btn_visual_on.gif";
	teachers_on = new Image();
	teachers_on.src = "img/home_btn_teachers_on.gif";
	send_on = new Image();
	send_on.src = "img/home_btn_send_on.gif";

	books1_off = new Image();
	books1_off.src = "img/home_btn_books1_off.gif";
	books2_off = new Image();
	books2_off.src = "img/home_btn_books2_off.gif";
	books3_off = new Image();
	books3_off.src = "img/home_btn_books3_off.gif";
	mailing_off = new Image();
	mailing_off.src = "img/home_btn_mailing_off.gif";
	stuart_off = new Image();
	stuart_off.src = "img/home_btn_stuart_off.gif";
	mathstart_off = new Image();
	mathstart_off.src = "img/home_btn_mathstart_off.gif";
	familymath_off = new Image();
	familymath_off.src = "img/home_btn_familymath_off.gif";
	visual_off = new Image();
	visual_off.src = "img/home_btn_visual_off.gif";
	teachers_off = new Image();
	teachers_off.src = "img/home_btn_teachers_off.gif";
	send_off = new Image();
	send_off.src = "img/home_btn_send_off.gif";

	books1_hold = new Image();
	books1_hold.src = "img/home_btn_books1_on.gif";
	books2_hold = new Image();
	books2_hold.src = "img/home_btn_books2_on.gif";
	books3_hold = new Image();
	books3_hold.src = "img/home_btn_books3_on.gif";
	mailing_hold = new Image();
	mailing_hold.src = "img/home_btn_mailing_on.gif";
	stuart_hold = new Image();
	stuart_hold.src = "img/home_btn_stuart_on.gif";
	mathstart_hold = new Image();
	mathstart_hold.src = "img/home_btn_mathstart_on.gif";
	familymath_hold = new Image();
	familymath_hold.src = "img/home_btn_familymath_on.gif";
	visual_hold = new Image();
	visual_hold.src = "img/home_btn_visual_on.gif";
	teachers_hold = new Image();
	teachers_hold.src = "img/home_btn_teachers_on.gif";
	send_hold = new Image();
	send_hold.src = "img/home_btn_send_on.gif";
}

function img_hold(imgName) {
	if ((version == "ok") && (loadedflag == 1) && (imgName !="home")) {
		imgHold = eval(imgName + "_hold.src");
		document [imgName].src = imgHold;
	}
}

function img_act(imgName) {
	if ((version == "ok") && (loadedflag == 1) && (imgName !="home")) {
		if (imgName != jsPageName) {
			imgOn = eval(imgName + "_on.src");
			document [imgName].src = imgOn;
		}
	}
}

function img_inact(imgName, imgAct) {
	if ((version == "ok") && (loadedflag == 1) && (imgName !="home")) {
		if (imgName != jsPageName) {
			imgOff = eval(imgName + "_off.src");
			document [imgName].src = imgOff;
		}
	}
}

function load_page(URL) {
	if (version == "ok") {
		window.parent.right.location.href = URL;
	}
}

