
function imgon(that,flg) {
	// ---- highlighting images ----
	if (flg == 'on'){
		that.src = that.src.replace('_out.' , '_on.')
	} else {
		that.src = that.src.replace('_on.' , '_out.') 
	}
	}