Event.observe(window, 'load', function() {
	setOnErrorDirection();
});

function setOnErrorDirection(){
	$$('img').each(function (img){
		Event.observe(img, "error", function(){
			img.src = "http://static.virtualvillage.com/www/miscellaneous/defaultImage.jpg";
		});
	});
}