$(document).ready(function() {
    $('#connexion').click(function(e){
        e.preventDefault();
        $.get('/' + (document.LANG != 'fr' ? document.LANG + '/' : '') + 'ajax/connexion/', function(data){
             $.facebox(data);
             $('#popup_connexion').click(function(e){
                e.preventDefault();
                //$("#ajaxResponse").fadeIn('slow');
                $("#loginForm").submit();
                $('#facebox .content').empty()
                $('#facebox .body').children().hide().end().append('<div class="loading"><img src="'+$.facebox.settings.loadingImage+'"/><br />Please wait...</div>');
             });
        });
    });
});
