//////////////////////////////////////////////////////
//////////////////////////////////////////////////////
//
//FUNCTIONS
//
//////////////////////////////////////////////////////
//////////////////////////////////////////////////////

//HANDLES AJAX FUNCTIONS FOR MAILCHIMP AND TWITTER API'S

$(document).ready(function() {
	$(window).load(function() {
		
		//MAILING LIST SUBMIT CLICK FUNCTION
		$("#home-mailing-list-submit").click(function(){
			var email = $("#home-mailing-list-input");
			var emailRegex = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/;
		
			if(!(emailRegex.test(email.val()))||email.val() == "Your Email Address"){

				alert("Please re-enter your email address");
				return;
			}
			else{
				var urlString = "email=" + email.val();
		
				$("#home-mailing-list-alert").fadeIn();
				$(".home-mailing-list-alert-p").html("Sending...");
				
				$.ajax({
					type: "POST",
					url: "ajax/mailchimp/mail_chimp_connect.php",
					data: urlString,
					success: function(msg){
					$(".home-mailing-list-alert-p").html(msg);
					$("#home-mailing-list-alert").delay(5000).fadeOut();
					}
				});
		
			}
		});
		
		//LOAD TWITTER DATA FROM ajax/twitter/twitter_connect.php
		$("#connect-tweets").load('ajax/twitter/tweets.html');
	
	});
});
