function addToMList() {
	var email = document.getElementById('mListEmail').value
	if (email !== null && email !== undefined && email !== '') {
		jQuery.post('mailingList.php', 'email=' + email)
		document.getElementById('mList').innerHTML = '<div style="font-weight:bold">Thank you for subscribing to our Mailing List!</div>';
	}
}