/******************** scipt for indexed_search ****/
/************ Copyright 2009 Netzbewegung GmbH ****/
/**************************************************/
/********************* s.kenk@netzbewegung.com ****/ 
/****************** last update on 20 Oct 2009 ****/
window.addEvent('domready', function() {
	
	$$('h2.tx-indexedsearch-title').each(function(el) {
		el.getChildren('a').each(function(link) {
			
			// Insert span instead of link with text
			new Element('span',{
				'text' : link.get('text')
			}).inject(link,'after');
			
			
			// Remove link from DOM
			link.dispose();
		});
	});
});