$(document).ready(function() {
		$('.numeric').numeric();
		$("a[rel^='prettyPhoto']").prettyPhoto();
		$('.confirm').click(function(){
			return confirm('Are you sure you want to navigate away from this page?  Your order is not complete.');
		});
		
		
		
		//======Payment Page=============
		$('#donation_form').submit(function(){
			if((($('input[name="donation_select"]:checked').length)<1)&&($('input[name="donation_other"]').val() == '' ))
			{
				alert('You have not selected a donation amount')
				return false;
			}
		});
		$('#pay_form').submit(function(){
			var len = $('.payment_form .input[value=]:not(#street2,#company)').length;
			if(len > 0)
			{
				alert('All fields are required.  Please fill in the remaining fields.')
				return false;
			}
		});
	});