window.addEvent('domready',function() {
	/* version 1 */
	$$('img.missing1').addEvent('error',function() {
		this.set({
			src: 'http://www.atlmetal.com/images/img_missing.jpg',
			alt: 'Sorry!  This image is not available!',
			styles: {
				width: 100,
				height:100
			}
		});
	});
	/* version 2 */
	$$('img.missing2').addEvent('error',function() {
		this.set({
			src: 'http://www.atlmetal.com/images/img_missing.jpg',
			alt: 'Sorry!  This image is not available!',
			styles: {
				width: 70,
				height:70
			}
		});
	});
});