$(document).ready(function(){

	var params = {
		profile: '139919852794444',
		nb: 5,
		replaceMore: $("#replace").is(":checked"),
		allowOtherPosts: !$("#onlyUser").is(":checked"),
		access_token: 'AAAEwIw9fIz0BAOpBbdHAiJeEZAhn1C2c1sRIjJ6NuhwSb4iZAk8x8ILo3EdJRbktYzYm1YOZBuEq70RRaRJH958zzMMRzudJe3vX1CnnLH8bYDKvLi4'
	}

	
		
		$("#result").html("");
		
		params.profile = '139919852794444';
		params.access_token = 'AAAEwIw9fIz0BAOpBbdHAiJeEZAhn1C2c1sRIjJ6NuhwSb4iZAk8x8ILo3EdJRbktYzYm1YOZBuEq70RRaRJH958zzMMRzudJe3vX1CnnLH8bYDKvLi4';
		//params.allowOtherPosts = !$("#onlyUser").is(":checked");
		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);
	})
})
