/** Inscription à la newsletter **/
function init_saisie_newsletter()
{
  var default_txt = 'Votre adresse e-mail' ;
  $('#form-nl input[name=email]').focus(function()
  {
    if( $(this).val()==default_txt ) $(this).val('') ; 
  }) ;
  
  $('#form-nl input[name=email]').blur(function()
  {
    if( $(this).val()=='' ) $(this).val(default_txt) ; 
  }) ;
  
  $('#form-nl').submit(function(e)
  {
    e.preventDefault();
    newsletter_inscrire( $('#form-nl input[name=email]').val() );
  }) ;
}

function newsletter_inscrire(email)
{
  send_request('inscription_newsletter.php', 'email='+email+'&x=1', 'POST' , newsletter_resultat) ;
}

function newsletter_resultat(msg)
{
  alert(msg) ;
}