function replaceImage(img) {
  if (img.width == '1' && img.src.match(/\.01\./)) {
    img.src = './img/no_item_image.gif';
  } else if (img.width == '1') {
    img.src = img.src.replace('.09.','.01.');
  }
}
function replaceImageMusic(img) {
  if (img.width == '1' && img.src.match(/\.01\./)) {
    img.src = './img/no_item_image_music.gif';
  } else if (img.width == '1') {
    img.src = img.src.replace('.09.','.01.');
  }
}
function replaceMiniImage(img) {
  if (img.width == '1' && img.src.match(/\.01\./)) {
    img.src = './img/no_item_image_mini.gif';
  } else if (img.width == '1') {
    img.src = img.src.replace('.09.','.01.');
  }
}