
window.addEvent('domready',function() {
	/* version 1 */
	$$('img.missing1').addEvent('error',function() {
		this.set({
			src: 'http://www.sexologic.com/missing.jpg',
			alt: 'Sorry!  This image is not available!',
			styles: {
				width: 160,
				height:120
			}
		});
	});
	
