$(document).ready(function() {
	/* Preise ersetzen */
	$('p.price:contains(Preis)').each(function(){
		$(this).find('span.replacePrice:regex("^(0,00 )"), strong.replacePrice:regex("^(0,00 )")').each(function(){
			$(this).text('auf Anfrage');
		});
	});
	
	$('p.price:contains(Price)').each(function(){
		$(this).find('span.replacePrice:regex("^(0,00 )"), strong.replacePrice:regex("^(0,00 )")').each(function(){
			$(this).text('on request');
		});
	});
	
	$('span.replacePrice:regex("^(0,00 )"), strong.replacePrice:regex("^(0,00 )")').each(function(){
		$(this).text('on request');
	});
	
	$('span.replacePreis:regex("^(0,00 )"), strong.replacePrice:regex("^(0,00 )")').each(function(){
		$(this).text('auf Anfrage');
	});
});