var flag = "";

function naviOn (obj) {
	var imgPath = obj.firstChild.src.split("_o");
	obj.firstChild.src = imgPath[0] + "_on.gif";
}

function naviOut (obj) {
	var imgPath = obj.firstChild.src.split("_o");
	if (obj != flag) {
		obj.firstChild.src = imgPath[0] + "_of.gif";
	} else {
		minder = obj;
	}
}
