function changeCss() {
    var w = $("#ads");
    var newWidth = w.width() + w.position().left + 186;
    if (newWidth > $("body:first").width()) {
        $("#footer-wrapper").width(newWidth + "px");
    } else {
        $("#footer-wrapper").removeAttr("style");
    }
}

$(function() {
    changeCss();
    $(window).bind("resize", function() {
        changeCss();
    });
});

function hideRegularPrice() {
    var productPriceElement = $(".priceincltax");
    $.each(productPriceElement, function() {
        var save = $(".red", $(this));
        if(save.length>0) {
            var regularprice = $(this).parent().find(".regularprice");
            $(regularprice).text(" ");
        }
    });
};

$(function() {
    hideRegularPrice();
});


