<div id="profile_box"><div class="span4 pos-relative"><div id="profile_box_form"><img src="/a/i/waiting_spinner_small.gif" width="16" height="16" /></div><div id="facebookLogin" class="facebookLogin"><span class="facebookLoginText"></span><fb:login-button scope="email, user_likes, user_birthday, user_about_me, user_activities, user_events, user_hometown, user_interests, user_groups, user_location"></fb:login-button></div></div><div id="profile_links" class="span2"><div class="login-links"><a id="account-creation-link" href="http://www.flair.be/fr/monprofil/inscription" rel="nofollow">S'inscrire sur Flair!</a><br><a id="account-forgot-password" href="http://www.flair.be/fr/monprofil/mot-de-passe-oublie" rel="nofollow">J'ai oublié mon mot de passe</a></div></div></div><script type="text/javascript"> window.console = window.console || {};
 window.console.log = window.console.log || function(s){return false;};
 var isLoggedIn = 0;
 var profileBoxLoaded = false;
 var profileBoxMobileLoaded = false;

function doFbloginlogic() {
 console.log('Enter doFbloginlogic function');
 FB.api('/me/permissions', function(response2) {
  console.log('FB API call for permissions');
  console.log(response2);
  if(response2.data['0'].email !== undefined) {
   console.log(response2);
   console.log('Email:'+response2.data['0'].email)
   if(!$.cookie('profile')) {
    $('#profile_box').html('<img src="/a/i/waiting_spinner_small.gif" width="16" height="16" />Connexion...');
    $.cookie('profile','the_value', {path: '/', domain: '.flair.be'});
    $.ajax({
     url:'http://www.flair.be/fr/ajax/profile/box',
     cache:false,
     dataType:'html',
     success:function(data){
      if((document.URL.search('wedstrijden') > 0) || (document.URL.search('concours') > 0)) {
       $('#profile_box').html(data);
       if ($('#profile_box_mobile').length > 0) {
         $('#profile_box_mobile').html(data);
       }
      } else {
       $.ajax({
        url:'http://www.flair.be/fr/ajax/profile/box',
        cache:false,
        dataType:'html',
        success:function(data){
         if (data == 'RELOAD_LOGIN_FORM') {
          data = loginform_profile_box;
         }
         $('#profile_box').html(data);
         if ($('#profile_box_mobile').length > 0) {
          if (data == 'RELOAD_LOGIN_FORM') {
           data = loginform_profile_box_mobile; 
          }
          $('#profile_box_mobile').html(data);
         }
        }
       });
      }
     }
    });
   }
  }
 });
}

// end facebook login logic

 // start html for profile box 
 // --- General login box
var loginform_profile_box = '<form id="profile_login" data-type="desktop" class="form-inline"> <input id="usermanagment_login_usr" type="text" class="input-mini btn-mini" placeholder="E-mail"> <input id="usermanagement_login_password" type="password" class="input-mini btn-mini" placeholder="Mot de passe" autocomplete="off"> <input id="usermanagment_login_remember" type="hidden" value="1"> <button id="login-button" type="submit" class="btn btn-mini btn-primary">OK</button> </form>';
 // --- End HTML General Login box  

 // --- Mobile login box
var loginform_profile_box_mobile = '<form id="profile_login" data-type="mobile" class="form-vertical"> <input id="usermanagment_login_usr_mobile" type="text" class="btn-large" style="width:265px;" placeholder="E-mail"> <input id="usermanagement_login_password_mobile" type="password" class="btn-large" style="width:265px;" placeholder="Mot de passe" autocomplete="off"> <input id="usermanagment_login_remember_mobile" type="hidden" value="1"> <br> <button id="login-button_mobile" type="submit" class="btn btn-primary btn-large"> </button> <div class="pull-right"> <a href="http://www.flair.be/fr/monprofil/mot-de-passe-oublie">J\'ai oublié mon mot de passe</a> <br /><a id="account-creation-link-mobile" href="http://www.flair.be/fr/monprofil/inscription">S\'inscrire sur Flair!</a> </div> </form>';
 // End HTML Mobile Login Box



// end html for profile box 


// check that we have some cookies
$(document).ready(function() {
if( $.cookie('profile')
  || $.cookie('profiel_"flair')
  || $.cookie('fbsr_"418611808167552')
  || (app.profile.isLoggedIn === true)
  && (!profileBoxLoaded)){
 $.ajax({
     url:'http://www.flair.be/fr/ajax/profile/box'
     ,cache:false
     ,dataType:'html'
     ,success:function(data){
      if (data == 'RELOAD_LOGIN_FORM') { 
       data = loginform_profile_box; 
      }
      $('#profile_box').html(data);
      if (!profileBoxMobileLoaded) {
       if ($('#profile_box_mobile').length > 0) {
        $.ajax({
         url:'http://www.flair.be/fr/ajax/profile/box'
         ,cache:false
         ,dataType:'html'
         ,success:function(data){
          if (data == 'RELOAD_LOGIN_FORM') {
           data = loginform_profile_box_mobile; 
          }
          $('#profile_box_mobile').html(data);
         }
        });
       }
      }
     }
 });
} else {
 $('#profile_box_form').html(loginform_profile_box);
 if ($('#profile_box_mobile_form').length > 0) {
  $('#profile_box_mobile_form').html(loginform_profile_box_mobile);
 }
}

// handle click on login buttons
$('#profile_login, #profile_box_mobile').submit(function(){
 var frmtype = $(this).attr('data-type');
 var rc = 'false';
 sdb_notify('<p style="text-align:center;margin-top:10px;"><img src="/a/i/waiting_spinner.gif" /><br /><br />Connexion...</p>',' ',60000,200,100);
 // post login data
 $.ajax({
  type:'POST'
  ,url:'http://www.flair.be/fr/ajax/profile/login'
  ,data:{
   'username': ((frmtype == 'desktop') ? $('#usermanagment_login_usr').val() : $('#usermanagment_login_usr_mobile').val())
   ,'remember': rc
   ,'password': ((frmtype == 'desktop') ? $('#usermanagement_login_password').val() : $('#usermanagement_login_password_mobile').val())
   }
  ,cache:false
  ,success:function(data) {
   if (data.wasloggedin==0) {
    if (data.isloggedin==0) {
     $.cookie('profile',null,{path:'/',domain:'" . $this->session->getCurrentCookieDomain() . "'});
     sdb_notify('<p style=\"text-align:center;color:#cc0000;padding-top:5px;\">' + data.error + '</p>',' ',4000,425,30,'alert alert-error','#F2DEDE','2px solid #bb7878');  
    } else {
     $.cookie('profile', 'the_value', {path: '/', domain: '.flair.be'});
                    var oldurl = document.location.href; 
                    document.location.href = oldurl;
    }
   } else {
    $.cookie('profile', 'the_value', {path: '/', domain: ''});
    var oldurl = document.location.href;
    document.location.href = oldurl;
   }
  }
  ,dataType:'json'
 });
 return false;
});


// hide comment forms
if ($('.comment_form').length > 0) {
 $('.comment_form').css({'display':'block'});
 $('.comment_form_off').css({'display':'none'});
}
});
</script>


<script type="text/javascript">
//START FACEBOOK LOGIN
    console.log('in fb comment');
//---------------------
var fbinitdone = false;
window.onload = function() {
 if(!fbinitdone) {
  window.fbAsyncInit(); }
};
//---------------------
window.fbAsyncInit = function() {
    console.log('fb init');
    fbinitdone = true;
    // init the FB JS SDK
    FB.init({
      appId      : '418611808167552', // App ID from the App Dashboard
      channelUrl : 'http://www.flair.be/fr/module/facebook/channel', // Channel File for x-domain communication
      status     : true, // check the login status upon init?
      cookie     : true, // set sessions cookies to allow your server to access the session?
      xfbml      : true  // parse XFBML tags on this page?
    });
    // Additional initialization code such as adding Event Listeners goes here
 FB.getLoginStatus(function(response) {
    console.log('FB.getLoginStatus: '+response.status);
   if (response.status === 'connected') {
         doFbloginlogic();
   }
 });
 
//---------------------
 FB.Event.subscribe('auth.authResponseChange', function(response) {
    console.log('FB.Event.subscribe: '+response.status);
   if(response.status == 'connected') {
        doFbloginlogic();
   }
 });
 FB.Event.subscribe('auth.login', function(response) {
    console.log('FB.Event.login: '+response.status);
   if(response.status == 'connected') {
        doFbloginlogic();
   }
 });
};
//---------------------
    console.log('uit fb');
// END FACEBOOK LOGIN

</script>
<rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  xmlns:admin="http://webns.net/mvcb/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">


  <channel>    <title>Flair.be</title>
    <link>http://www.flair.be/fr/</link>    <description>Flair.be</description>    <dc:language>fr</dc:language>    <dc:creator>webmaster-fr.flair@sanomamedia.be</dc:creator> <atom:link href="http://www.flair.be/fr/feed" rel="self" type="application/rss+xml" />    <dc:rights>Copyright 2012</dc:rights>    <admin:generatorAgent rdf:resource="http://www.flair.be/fr/" /><item><title>Help, je ne sais plus gérer mes émotions!</title><link>http://www.flair.be/fr/psycoach/241543/help-je-ne-sais-plus-gerer-mes-emotions</link><guid>http://www.flair.be/fr/psycoach/241543/help-je-ne-sais-plus-gerer-mes-emotions</guid><category>Psycoach</category><description><![CDATA[<p><em>Bonjour, je viens vers vous avec un <strong>probl&egrave;me persistant</strong>. Je suis une jeune maman de 26 ans et enfant j&#39;&eacute;tais tr&egrave;s patiente et calme. Mais depuis mes 16 ans, je ne sais tout simplement plus g&eacute;rer mes &eacute;motions quelles qu&#39;elles soient.</em></p><p><em>Je c&egrave;de surtout tr&egrave;s vite &agrave; la col&egrave;re et souvent avec violence, il s&#39;agit surtout de balancer le moindre objet que j&#39;ai sous la main. Je ne sais vraiment pas comment sortir de cela. J&#39;ai &agrave; plusieurs reprises contact&eacute; un psy mais &agrave; chaque fois celui-ci ne me mettait pas assez en confiance, m&#39;aga&ccedil;ait...</em></p>]]></description><enclosure url="http://s9.cdn.sanomamedia.be/a/view/q75/w160/h160/867403/psycoach-conseils-psycho-impulsivite-gerer-emotion.jpg" length="108713" type="image/jpeg" /><pubDate>Tue, 21 May 2013 16:08:00 +0200</pubDate></item><item><title>Que porter à un mariage: une alternative à la robe</title><link>http://www.flair.be/fr/dossier/mariage/article/236467/que-porter-a-un-mariage-une-alternative-a-la-robe</link><guid>http://www.flair.be/fr/dossier/mariage/article/236467/que-porter-a-un-mariage-une-alternative-a-la-robe</guid><category>Mode</category><description><![CDATA[<p>Vous &ecirc;tes nombreuses &agrave; ne pas vouloir porter <strong>de robes</strong> &agrave; un mariage... Pour vous, Mesdames, voici <strong>4 looks</strong> qui pourraient vous inspirer!</p><p><em><strong>Pantalons autoris&eacute;s!</strong></em></p>]]></description><enclosure url="http://s9.cdn.sanomamedia.be/a/view/q75/w160/h160/836175/pantalons-mariage.jpg" length="108713" type="image/jpeg" /><pubDate>Tue, 21 May 2013 16:02:00 +0200</pubDate></item><item><title>Curieux mais ça fonctionne...</title><link>http://www.flair.be/fr/beaute-et-minceur/153454/curieux-mais-ca-fonctionne</link><guid>http://www.flair.be/fr/beaute-et-minceur/153454/curieux-mais-ca-fonctionne</guid><category>Beauté et Minceur</category><description><![CDATA[<p>Il n&#39;est pas toujours n&eacute;cessaire d&#39;acheter des <strong>produits tr&egrave;s chers</strong> pour <strong>&ecirc;tre belle</strong>. Il suffit <strong>d&#39;un peu d&#39;imagination</strong>...</p><p>Voici quelques <strong>trucs express</strong> pour <strong>prendre soin</strong> de vous!</p>]]></description><enclosure url="http://s9.cdn.sanomamedia.be/a/view/q75/w160/h160/866989/astuce-beaute-express-prendre-soin-de-soi.jpg" length="108713" type="image/jpeg" /><pubDate>Tue, 21 May 2013 15:49:00 +0200</pubDate></item><item><title>Lunettes soleil Flair 2013</title><link>http://www.flair.be/fr/mode/237039/lunettes-soleil-flair-2013</link><guid>http://www.flair.be/fr/mode/237039/lunettes-soleil-flair-2013</guid><category>Mode</category><description><![CDATA[<p> Si le <strong><span data-scayt_word="soleil" data-scaytid="1">soleil</span> </strong>ne <span data-scayt_word="s’est" data-scaytid="2">s&rsquo;est</span> pas encore <span data-scayt_word="beaucoup" data-scaytid="3">beaucoup</span> <span data-scayt_word="montré" data-scaytid="4">montr&eacute;</span> <span data-scayt_word="ce" data-scaytid="5">ce</span> <span data-scayt_word="printemps" data-scaytid="6">printemps</span>, <span data-scayt_word="il" data-scaytid="7">il</span> <span data-scayt_word="va" data-scaytid="8">va</span> <span data-scayt_word="briller" data-scaytid="9">briller</span> <span data-scayt_word="doublement" data-scaytid="10">doublement</span> <span data-scayt_word="cet" data-scaytid="11">cet</span> <span data-scayt_word="été" data-scaytid="12">&eacute;t&eacute;</span>!</p><p> <span data-scayt_word="Une" data-scaytid="13">Une</span> <span data-scayt_word="bonne" data-scaytid="14">bonne</span> nouvelle qui <span data-scayt_word="devrait" data-scaytid="15">devrait</span> <span data-scayt_word="vous" data-scaytid="49">vous</span> <span data-scayt_word="motiver" data-scaytid="16">motiver</span> encore plus <span data-scayt_word="à" data-scaytid="17">&agrave;</span> <span data-scayt_word="vous" data-scaytid="50">vous</span> <span data-scayt_word="offrir" data-scaytid="18">offrir</span> les<span _fck_bookmark="1" style="display: none;">&nbsp;</span><span _fck_bookmark="1" style="display: none;">&nbsp;</span><span _fck_bookmark="1" style="display: none;">&nbsp;</span><strong> lunettes de <span data-scayt_word="soleil" data-scaytid="55">soleil</span> Flai</strong>r <span data-scayt_word="disponibles" data-scaytid="69">disponibles</span> en rose, <span data-scayt_word="vert" data-scaytid="57">vert</span> <span data-scayt_word="ou" data-scaytid="58">ou</span> <span data-scayt_word="brun" data-scaytid="59">brun</span>.</p>]]></description><enclosure url="http://s9.cdn.sanomamedia.be/a/view/q75/w160/h160/840003/lunettes-de-soleil-flair.jpg" length="108713" type="image/jpeg" /><pubDate>Tue, 21 May 2013 11:50:00 +0200</pubDate></item><item><title>Lingerie et bikinis jusqu'à -50%</title><link>http://www.flair.be/fr/mini-guides/241405/lingerie-et-bikinis-jusqua-50</link><guid>http://www.flair.be/fr/mini-guides/241405/lingerie-et-bikinis-jusqua-50</guid><category>Mini-guides</category><description><![CDATA[<p>Les beaux jours arrivent, les oiseaux chantent et les jours se rallongent! Il est temps de retrouver un <strong>ventre plat </strong>&agrave; l&rsquo;approche de l&rsquo;&eacute;t&eacute; et de troquer la bou&eacute;e de l&rsquo;hiver contre des abdos en b&eacute;ton.</p><p>Flair vous propose des <strong>conseils avis&eacute;s selon votre morpho</strong>, vous guide dans votre <strong>shopping maillots et lingerie </strong>et vous donne quelques <strong>offres sympas pour d&eacute;penser sans compter</strong>!</p><p>Rendez-vous dans votre <strong>Flair du 22 mai </strong>pour en profiter!</p>]]></description><enclosure url="http://s9.cdn.sanomamedia.be/a/view/q75/w160/h160/867029/promotion-reduction-bikinis-lingerie.jpg" length="108713" type="image/jpeg" /><pubDate>Tue, 21 May 2013 11:34:00 +0200</pubDate></item><item><title>Elles troquent leurs services pour défier la crise</title><link>http://www.flair.be/fr/psycho-et-sexo/241465/elles-troquent-leurs-services-pour-defier-la-crise</link><guid>http://www.flair.be/fr/psycho-et-sexo/241465/elles-troquent-leurs-services-pour-defier-la-crise</guid><category>Psycho &amp; Sexo</category><description><![CDATA[<p>Tu r&eacute;pares ma fen&ecirc;tre si je corrige ta lettre? Vendu! Nous, on dit <strong>non &agrave; la crise</strong> et oui &agrave; l&rsquo;<strong>entraide</strong>. Participez, inspirez-vous, l&rsquo;avenir sera solidaire!</p><p>Lass&eacute;e qu&rsquo;on vous rab&acirc;che que l&rsquo;&eacute;conomie va mal? &Ccedil;a tombe bien, des <strong>alternatives</strong> existent. Sans devoir chauffer la carte bleue, on peut obtenir beaucoup. Et avec le sourire svp!&nbsp;</p>]]></description><enclosure url="http://s9.cdn.sanomamedia.be/a/view/q75/w160/h160/867157/plan-debrouille-anti-crise-faire-des-economies.jpg" length="108713" type="image/jpeg" /><pubDate>Tue, 21 May 2013 11:26:00 +0200</pubDate></item><item><title>Craquer, c'est trop bon!</title><link>http://www.flair.be/fr/beaute-et-minceur/241453/craquer-cest-trop-bon</link><guid>http://www.flair.be/fr/beaute-et-minceur/241453/craquer-cest-trop-bon</guid><category>Beauté et Minceur</category><description><![CDATA[<p>&Agrave; condition de ne pas le faire 6 fois par jour, craquer est permis. Y compris quand on tient sa ligne &agrave; l&rsquo;&oelig;il. Ce serait m&ecirc;me bon pour la sant&eacute;!</p><p><strong>Saviez-vous que...</strong> Nos anc&ecirc;tres consommaient plus de sucres et de graisses &agrave; l&rsquo;approche de l&rsquo;hiver? Question de survie! Notre propension &agrave; aimer ces aliments &ldquo;interdits&rdquo; serait donc d&rsquo;origine g&eacute;n&eacute;tique. Bonne nouvelle: l&rsquo;&eacute;t&eacute; arrive!<br />&nbsp;</p>]]></description><enclosure url="http://s9.cdn.sanomamedia.be/a/view/q75/w160/h160/867133/craquer-succomber-manger.jpg" length="108713" type="image/jpeg" /><pubDate>Tue, 21 May 2013 11:04:00 +0200</pubDate></item></channel></rss>