/*
 * This is a javascript file used for checking out of the store.
 */

$(document).ready(function() {
  $("#buy-form").submit(function() {
    var total = this.elements['order-total'].value;
    return confirm("Charge " + total + " to your credit card?");
  });

  $(".link-button").click(function() {
    window.location = $(this).attr('url');
  });
  
});

