function fix_productPagePrice(){
	var p=$get('productPrice');
	var html='',a;
	if(typeof(p)!=='undefined'&&p!==null){
		if(p.tagName.toLowerCase()==='span'){
			a = p.innerHTML;
			html = html.replace('>Price:','><span class="price-label">Price:</span>');
			p.innerHTML = html;
		}
	}
}