﻿window.onload=function(){

	var imglist = document.getElementsByTagName('img');

	for(i=0;i<imglist.length;i++){
		var imgpath = imglist.item(i).src;
		if(imgpath.match(/http:\/\/images-jp.amazon.com/i)){
			var newImg = new Image();
			newImg.src = imgpath;
			if(newImg.width=="1" && newImg.height=="1"){
				//alert(imglist.item(i).alt)
				imglist.item(i).src='http://www.maruzen.co.jp/shopinfo/include/image/banner/noimage-m.gif';
				//imglist.item(i).width=imglist.item(i).width;
			}
		}
	}
	
}

