


function eintragen(){
	
	
	 var email = $('input[name=emailadresse]');
	 $('.newsletterBox').html('<img src="ajax-loader.gif" alt="Loading..."/>');
	
		$.ajax({
			url: 'newsletterAjax.php',
			data: 'action=eintragen&emailadresse='+email.val(),
			type: 'GET',
			success: function(data) {
				$('.newsletterBox').fadeOut('slow',function(){
					$('.newsletterBox').html(data);
					$('.newsletterBox').fadeIn('slow');
				});
			}
			
		});
}


function newsletterForm(){
	$('.newsletterBox').html('<img src="ajax-loader.gif" alt="Loading..."/>');
	
		$.ajax({
			url: 'newsletterAjax.php',
			data: 'action=showForm',
			type: 'GET',
			success: function(data) {
				$('.newsletterBox').fadeOut('slow',function(){
					$('.newsletterBox').html(data);
					$('.newsletterBox').fadeIn('slow');
				});
			}
			
			});	
}


function austragen(){
	
	
	 var email = $('input[name=emailadresse]');
	 $('.newsletterBox').html('<img src="ajax-loader.gif" alt="Loading..."/>');
	
		$.ajax({
			url: 'newsletterAjax.php',
			data: 'action=austragen&emailadresse='+email.val(),
			type: 'GET',
			success: function(data) {
				$('.newsletterBox').fadeOut('slow',function(){
					$('.newsletterBox').html(data);
					$('.newsletterBox').fadeIn('slow');
				});
			}
			
		});
}
