$(function() {
	
	$(".newsletterBan .text").live("click",function() {
		$(this).val('');
	})
	
	$(".newsletterBan form").live("submit",function() {
		var email=$('.text',this).val();
		
		$.post("ajax/newsletter.php",{email: email,language: LANGUAGE});
		$('.text',this).val('');		
		
		$(".newsletterBan form").hide();
		$(".newsletterBan .subscriptionOk").show();
		
		return false;		
	})
	
	
})

