$j(function(){
	
	$j(".product-view .price-box .price-label").remove();
	$j(".product_reviews .price-box .price-label").remove();
	
	$j(".inner-item .price-label").remove();
	/*
	$j(".inner-item .pricerange .price").each(function(){	
		var price_html = $j(this).html();
		price_html = price_html.substring(0,price_html.indexOf(",")+1) + "-";
		$j(this).html("");
		$j(this).html(price_html);
	});*/
	$j(".inner-item .pricerange .special-price").each(function(){
		var price_html = $j(this).html();
		//$j(this).html(price_html + ' <span style="font-size:10px;">Incl.19% BTW</span>');
	});
	$j(".inner-item .price").css("color","black");
});



