//jQuery.noConflict();




function ods_ajaxmailsubscription(obj, action, uidContent){

	
	jQuery('#pns-loader-'+uidContent).css('display','block');

	jQuery.ajax({  
		type: 'POST',  
		url: obj.form.action,  
		data: {
			'tx_pexnewslettersubscription_pi1[ajax]' : 'jquery',
			'tx_pexnewslettersubscription_pi1[action]' : action,
			'tx_pexnewslettersubscription_pi1[email]' : jQuery('#pns-email-'+uidContent).val(),
			'tx_pexnewslettersubscription_pi1[contentUid]' : jQuery('#pns-contentUid-'+uidContent).val()
		},  
		success: function(data) {
			jQuery('#pns-retourAjax-'+uidContent).html(data);
			jQuery('#pns-loader-'+uidContent).css('display','none');
		}  
	}); 

	return false;
}


