$(document).ready(function(){
	
	/* Forward form set-up */
	
	$("#send_form").ajaxForm(function(data) {
		
		$('p#fwrd_error').fadeOut();
	
		if (data == 1){ // success
			$("#send_form").resetForm();
			$("p#fwrd_success").fadeIn("slow");
			$("#send_form #submitinput").fadeOut("fast")
			
			window.setTimeout(function() {
				$('p#fwrd_success').fadeOut();
				$("#send_form #submitBtn").fadeIn("fast");
			}, 4000);

		}
		else if (data==2){ // server error
			$("p#fwrd_error").fadeIn("fast");
			$("p#fwrd_error").text("Error! Try again please.").fadeIn(500).fadeIn(5000).fadeout("fast");
		}
		else if (data==3){ // blank fields or invalid email
			$("p#fwrd_error").fadeIn("fast");
			$("p#fwrd_error").text("Please fill correctly all necessary fields.").fadeIn(500).fadeIn(5000).fadeout("fast");
		}
	});
	
	
});
