/**
  * change the display-price vom bundle products in related products (dirty fix for the special-price - bug)
  */
function specialPricetoRealPrice(itemId)
{
    if ($$('li.item-'+itemId+' p.old-price') && $$('li.item-'+itemId+' p.old-price')[0]) {
        $$('li.item-'+itemId+' p.old-price')[0].style.display = 'none';
        $$('li.item-'+itemId+' span.price-label')[1].style.display = 'none';
        $$('li.item-'+itemId+' span.price')[1].style.color = '#535353';
    }
}
