FB.init({ 
    appId:'121298177959237', 
    cookie:true, 
    status:true, 
    xfbml:true 
});
$(document).ready(
    function(){
        $('.rsvp').live('click',function(event){
            event.preventDefault();
            val = $(this).attr('lang');
            if(val == 'attending'){
                $('#status_text').html('Du nimmst teil.')
            }
            if(val == 'maybe'){
                $('#status_text').html('Du nimmst vielleicht teil.')
            }
            if(val == 'declined'){
                $('#status_text').html('Du nimmst nicht teil.')
            }
            FB.api("/"+$('#event_id').val()+"/"+val, 'post',function(){
                FB.api("/"+$('#event_id').val()+"/attending",function(response){
                    $('#attending_count span').html(response.data.length)  
                })
            });
        })
    });



