/**
 * 画像を切り替えます。
 *
 * param	object	obj	対象オブジェクト
 * param	string	img	画像パス
 */
function changeImage(obj, img) {
	obj.src = img;
}
