function amazonNoImg() {
		var imgs = this.document.images;
		//alert(image_width);
		for (var i = 0; i < imgs.length; i++) {
			if ( imgs[i].src.match('http://images-[a-z]+.amazon.com/')){
				if ((imgs[i].width == 1) && (imgs[i].height == 1))
				{
					width = parseInt(imgs[i].src.match(/[^(_SX)][\d]+[_$]/));

					imgs[i].src = 'http://arcam-b.com/editpic.php?img=/notfound.jpg&width=' + width;

				}
			}
		}
}
amazonNoImg();
