$(document).ready(function() {
	$('a, area').each(function(){
		var external = ($(this).attr('href').indexOf('folsomproject.com') == -1) &&
									 ($(this).attr('href').indexOf('dev') == -1) &&
									 ($(this).attr('href').indexOf('maasaimarathon.com') == -1) &&
									 ($(this).attr('href').indexOf('http') != -1);
		if (external)
		{
			$(this).click(function() {
				var newWin = window.open($(this).attr('href'));
				newWin.focus();
				return false;
			});
		}
	});
	$('.submit-image').click(function(){
		if ($('#' + $(this).attr('rel')).val().indexOf('$') > -1 || $('#' + $(this).attr('rel')).val().indexOf(',') > -1)
		{
			alert('Please enter your donation amount WITHOUT the "$" sign or commas.');
			return false;
		}
		else if ($('#' + $(this).attr('rel')).val() == '')
		{
			alert('Please enter the amount of your donation (excluding the "$" sign) before you hit the Sponsor button.');
			return false;
		}
	});
});