
/*global $, DD_roundies*/
"use strict";

// Global variables

jQuery.easing.def = "easeOutExpo";

// ++++++++++++++++++++++++++++++++++++++++++++++++++
// CONTACT FUNCTIONS
// ++++++++++++++++++++++++++++++++++++++++++++++++++
function submitForm() {
	var theName, theEmail, theMessage;
	
	theName = document.contact.name.value;
	theEmail = document.contact.email.value;
	theMessage = document.contact.message.value;
	
	$.post("http://portfolio.codygroom.com/php/email.php", { myName: theName, myEmail: theEmail, myMessage: theMessage },
		function(data) {
			$('.message').fadeIn(1000, function() {
				$('#name').focus();
					
				setTimeout(function() { 
       				$('.message').fadeOut(1000);
   				}, 5000);
			});
			
		document.contact.name.value = "";
		document.contact.email.value = "";
		document.contact.message.value = "";
	});
}