if (document.images) {

	var on = new Image();
	on.src = "./images/title_box_over.gif"; // ポイント時の画像

	var off = new Image();
	off.src = "./images/title_box.gif"; // 通常の画像

}

function On(name) {
	if (document.images) {
		document.images[name].src = on.src;
	}
}

function Off(name) {
	if (document.images) {
		document.images[name].src = off.src;
	}
}
