/*///////////////////////////////////////////////////////////////////////Ported to jquery from prototype by Joel Lisenby (joel.lisenby@gmail.com)http://joellisenby.comoriginal prototype code by Aarron Walter (aarron@buildingfindablewebsites.com)http://buildingfindablewebsites.comDistrbuted under Creative Commons licensehttp://creativecommons.org/licenses/by-sa/3.0/us////////////////////////////////////////////////////////////////////////*/$(document).ready(function() {	$('#newsletterform').submit(function() {		if($("#actionmethod").val() == "subscribe"){			// update user interface			$('#response').html('Ihre E-Mail-Adresse wird eingetragen...');						// Prepare query string and send AJAX request			$.ajax({				url: '/3rdParty/scripts/mailchimp/store-address.php',				data: 'ajax=true&email=' + escape($('#email').val()),				success: function(msg) {					$('#response').html(msg);				}			});			return false;		} else {			$('#response').html('Ihre E-Mail-Adresse wird ausgetragen...');						// Prepare query string and send AJAX request			$.ajax({				url: '/3rdParty/scripts/mailchimp/remove-address.php',				data: 'ajax=true&email=' + escape($('#email').val()),				success: function(msg) {					$('#response').html(msg);				}			});			return false;		}	});});
