Event.observe(window, 'load', function () {
    $$('div.features a img').each(function(img) {
		var a = img.parentNode;
		if (a.childNodes.length == 1) {
			Element.addClassName(a, 'image');
		}
	});
});
	



