$(document).ready(function() {
	
	bindNewsletterForm = function() {
		$('#newsletter_wrapper form').ajaxForm( {
			dataType:	'html',
			success:	function(data, textStatus) {
				$('#newsletter_wrapper').replaceWith(data);
				bindNewsletterForm();
			},
			error:		function(XMLHttpRequest, textStatus, errorThrown) {
				$('#getinfos').html('Une erreur est survenue durant la requête');
				bindNewsletterForm();
			}
		} );
	}
	
	bindNewsletterForm();
	
	// opening external links & files into new windows
	$('a[rel*=external]').attr('target', '_blank');
	$('a[href*=.pdf]').attr('target', '_blank');
});

