/*------------------------------------------------------------------------------
| cart.js
| Lehrhaus Judaica
| Author: Richa Avasthi
| Created: 2009-06-03
|
| Utilities for the cart views.
------------------------------------------------------------------------------*/


// TODO: replace this with jQuery-specific JS and remove Prototype
document.observe("dom:loaded", function() {
    Event.observe($("continue"), "click", submitDonationForm);
});


/*------------------------------------------------------------------------------
| submitDonationForm()
|
| Submit the donation form when the continue link is clicked.
------------------------------------------------------------------------------*/
function submitDonationForm()
{
    $$("form.donate")[0].submit();
}

