// Change the recalculate button
$(document).ready(function(){
    if($("#cart-contents").length > 0){
        $(".actions .recalculate").hide();
        $(".input-quantity").each(function(){
        	$(this).parent().append("<input type='image' src='https://www.CadeauOnline.com/content/165531/images/update.png' class='qtyupdate' value='Update' style='border:none;' />");
        });
        $(".qtyupdate").each(function(){
        $(this).click(function(){$(".recalculate").click();})
        })
    }
// append price/sale price
$(".results-grid .reduced").prepend("Regular Price ");
$(".results-grid .sale").prepend("Sale Price ");

// Insert text in the checkout page (above comments).
if($("#ctl00_ctl00_mainContent_scPageContent_commentsControl_commentsTextBox").length > 0){
$("#ctl00_ctl00_mainContent_scPageContent_commentsControl_commentsTextBox").before("<div style='color:#A0397C;margin-top:-10px;'>(Please provide us with the date of your party so we can do our best to make sure you receive your package on time and add any other comments)</span>");
}
});
