$(document).ready(function(){
        
	var params = {
		profile: '168188903247324',
		nb: 5,
		replaceMore: false,
		allowOtherPosts: false,
		access_token: 'AAAEnMomgoDYBAH0HSRU3wHdkV9696VNbwyEKe94Pux4dZBmZA3e76bPISnbDDE9hUsPN6jOrW7Elwskuy19HdwrUPVLf0ZD'
	}
        
        $("#result").html("");
        $("#result").facebook_feed(params);

	$("#getFeed").click(function(){
		
		$("#result").html("");
		
		params.profile = $("#page").val();
		params.access_token = $("#token").val();
		params.allowOtherPosts = !$("#onlyUser").is(":checked");
		params.replaceMore = $("#replace").is(":checked");
		
		$("#result").facebook_feed(params);
		
	})
	
	$("#onlyUser").change(function(){
		
		$("#result").html("");
	
		params.profile = $("#page").val();
		params.access_token = $("#token").val();
		params.allowOtherPosts = !$("#onlyUser").is(":checked");
		params.replaceMore = $("#replace").is(":checked");
		
		$("#result").facebook_feed(params);
	})
})
