var mouseEvent = function(event) {
	$('foto_groot').src = this.src.replace(/klein/, 'groot');
}

$$('#text img').each(function(item) {
	item.addEvent('mouseover', mouseEvent);
});

