/**
 * jpContests site functions
 */

function jpConSubmit( form ) {
	jQuery(function($){

		$(form+':input').each();

		/*$.ajax({
			type: "POST",
			url: "bin/process.php",
			data: dataString,
			success: function() {
				$('#contact_form').html("<div id='message'></div>");
				$('#message').html("<h2>Contact Form Submitted!</h2>")
				.append("<p>We will be in touch soon.</p>")
				.hide()
				.fadeIn(1500, function() {
					$('#message').append("<img id='checkmark' src='../../jpContests/js/images/check.png' />");
				});
			}
		});*/
		
		return false; // Make sure the submit button doesn't do anything outside of the ajax.
	});
}
