
	  
	$(document).ready(function(){
		$("#ajax-subscription-form").submit(function(){

		var str = $("#ajax-subscription-form").serialize();

						   $.ajax({
						   type: "POST",
						   url: "mail-subscription.php",
						   data: str,
						   success: function(msg){
						    
		$("#subscription-form-note").ajaxComplete(function(event, request, settings){
		$("#subscription-form-note").show();
		if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
		{
			result = '<span class="notification_ok">Thank you for signing up for the Thought for today. You will begin receiving the Daily Thoughts in your inbox within 1 week. <br /> If you do not see them, please check your spam folder. If you still do not receive them, please email us at <a href="mailto:info@thought42day.com">info@thought42day.com</a> and we will check on it for you.</span>';
			$("#fields1").hide();
		}
		else
		{
			alert(msg);
			//result = msg;	
		}

		$(this).html(result);

		});

		}
						 });

		return false;

		});

	});