$(document).ready(function() {

// Price Format for Amount
$('.amount input').priceFormat({
	prefix: '$ ',
	centsSeparator: '.',
	thousandsSeparator: ','
});

// Confirm delete buttons
$('.confirm').click(function(event){
	var confirmation = confirm("Deleting this budget will instantly and permanently delete all budget information along with any entries for this budget. There is no undo.");
	return confirmation;
});

// Loader
$('.show-loader').click(function(event){
	$('#loading').show();
});

});

