$(document).ready(function()
{
  var top = $("#page_bar_left").position().top + $("#page_bar_left").height() - 1;
  var X =  $("#page_wrapper").position().left - 8;
  var bottom = $("#footer").position().top + 9;
  
  if (bottom > top)
  {
    var html = '<div id="left_line" style="left:' + X + 'px;top:' + top + 'px;height:' + (bottom-top +1) + 'px;">';
    $("body").append(html);
  }   
});

function subscribeUserToNewsletter(baseUrl)
{
  $.ajax({type:'GET', url:baseUrl + "/user/subscribeToNewsletter", success:function(result) {alert("Votre abonnement a bien \351t\351 enregistr\351")}});
}

