

function cv_display_img(id, img_url){

	if( !img_url ){ return; }

	//親要素のliにimgタグ追加
	$("#"+id).append('<img class="variationImg" width="120" src="' + img_url + '" />');
}



function cv_remove_img(id){

	//念のため
	if( $("#"+id+" > img") ){

		$("#"+id+" > img").remove();
	}
}
