jQuery(document).ready(function() {
		// Put a click handler on the GO button
		jQuery('#newslettergo img').click (function() {
				jQuery.post(
				'http://everybodywins.org/ewins/wordpress/ewins-server.php',
				// serialize all the data from the form in the post call
				 jQuery('#nlform').serialize(),
				function(data)  {
					// Clear the Enter Email cell after response received
					jQuery('#newsletterinput').val("");
					//$('#retdata').text(data);
				}, 'html')
				;
				//
				return false;
		});
});

