$(document).ready(function() {

	// New checkout functionality.
	
	if($("form[name=checkout] table.cart").length > 0) {
		
		$("table.cart .cart_remove, table.cart .cart_vat .cart_quantity, table.cart .cart_total .cart_quantity").hide();
		
		$("table.cart td.cart_quantity input:not(':hidden')").after('<input type="submit" class="update" name="update_cart" value="Update" />');
		
	}

});
