﻿
function imgErrors() {
	$$("div.concert div.colA img").each( function(elm) {
		Event.observe(elm, 'onError', function(event) {
			thisImg = Event.findElement(event,"img");
			thisImg.className += " senseImatge"; 
		});
	});
}

addLoadEvent(imgErrors);