jQuery(document).ready(function(){
	
	jQuery('#paymentsSubmit').click( function() {
		var invoiceAmount = jQuery('#invoiceAmount').val();
		var rawPaypalFee = invoiceAmount * 0.029 + .3;
		var roundedPaypalFee = rawPaypalFee.toFixed(2);
		jQuery('#processingFee').val(roundedPaypalFee);
		jQuery('#paymentsSubmit, #paymentMessage').toggle();
	});	
	
	jQuery('#paymentMessage').click( function() {
		window.location.href = '/payments';
	});
	
});