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