
function protectImages() {
		
	$$('.overview_wrapper img', '.berater img').each(function(el) {
      		var coords = el.getCoordinates();
      		var elProps = el.getProperties('alt', 'title');		
      		var p = new Element('img', {
        		src: 'http://www.tuced.de/uploads/tf/blank.gif',
       			width: coords.width,
        		height: coords.height,
        		title: elProps['title'],
        		alt: elProps['alt'],
        		styles: {
          			'z-index': 100,
          			'left': coords.left + 'px',
          			'top': coords.top + 'px',
          			'position': 'absolute'
        			}
      		}).inject($(document.body),'top');
	});
		
}

window.addEvent('domready', function() {
	protectImages();
});
