jQuery.noConflict();
jQuery( function($) {
var focus = 0;
$('#npa').focus(function() {
  focus = 1;
});
$('#npa').blur(function() {
  focus = 0;
});
$(document).keyup(function(event){
    if (event.keyCode == 13 && focus == 1) { // Si on a appuyé sur enter
        jQuery("#npa_submit").click();
    }
});
jQuery("#npa_submit").click(function(){
	
	jQuery("#npa_result").fadeOut();
  jQuery.ajax({
	   type: "post",
	   url: "wp-content/themes/wpmu-nelo/npa_result.php",
	   data: "npa="+jQuery("#npa").val(),
	   success: function(html){
   			jQuery("#npa_result").html(html);
	   }
	 });
	 jQuery("#npa_result").fadeIn();
});
});

