function replaceImage(img) {  if (img.width == '1' && img.src.match(/\.01\./)) {    img.src = '../imgs/marukajiri/no-image-no-ciu._SL150_.gif';  } else if (img.width == '1') {    img.src = img.src.replace('.09.','.01.');  }}
