
document.observe('dom:loaded', function() {
	for (var i = 1; i <= 25; i++) {
		checkImage('img' + i);
	}
});

function checkImage(imgName) {
	if (img_groot[imgName + '_groot']) {
		$(imgName).up().setAttribute('href', img_groot[imgName + '_groot']);
		$(imgName).up().addClassName('vol');
	} else {
		$(imgName).up().removeAttribute('rel');
		$(imgName).up().addClassName('leeg');
		$(imgName).up().setAttribute('href', '#');
	}
}
