/* Switch Out The Confirm Button and Remove the Cancel Button */
$('form[name=invoicecancel]').parent('td').remove();
$('form[name=invoiceconfirm]').parent('td').css({ width: '100%', textAlign: 'center' } );
$('form[name=invoiceconfirm]').find('input[type=submit]').remove();
$('form[name=invoiceconfirm]').append($('#confirmButton'));

/* Cart */
$('#cart td.remove a').click( function(e) {
    
    $this = $(this);
    $tr = $this.parents('tr');
    
    $tr.addClass('remove');
    
    if( confirm('Are you sure you want to remove this item from your cart?') ) {
        $tr.fadeOut('fast');
    } else {
        $tr.removeClass('remove');
        e.preventDefault();
    }
    
});