
if (document.images) {
	img1o = new Image();
	img2o = new Image();
	img3o = new Image();
	img4o = new Image();
	img5o = new Image();
	img1o.src = "https://www.kk-lite.com/assets/images/top-nav/orange-products.gif";
	img2o.src = "https://www.kk-lite.com/assets/images/top-nav/orange-purchase.gif";
	img3o.src = "https://www.kk-lite.com/assets/images/top-nav/orange-about.gif";
	img4o.src = "https://www.kk-lite.com/assets/images/top-nav/orange-contact.gif";
	img5o.src = "https://www.kk-lite.com/assets/images/top-nav/orange-shoppingcart.gif";
	img1w = new Image();
	img2w = new Image();
	img3w = new Image();
	img4w = new Image();
	img5w = new Image();
	img1w.src = "https://www.kk-lite.com/assets/images/top-nav/white-products.gif";
	img2w.src = "https://www.kk-lite.com/assets/images/top-nav/white-purchase.gif";
	img3w.src = "https://www.kk-lite.com/assets/images/top-nav/white-about.gif";
	img4w.src = "https://www.kk-lite.com/assets/images/top-nav/white-contact.gif";
	img5w.src = "https://www.kk-lite.com/assets/images/top-nav/white-shoppingcart.gif";
}

function showOrange(name) {
	if (document.images) {
		document[name].src = eval(name + "o.src");
	}
}

function showWhite(name) {
	if (document.images) {
		document[name].src = eval(name + "w.src");
	}
}