
$(document).ready(function() { 



  $.ajax({
		url: "https://graph.facebook.com/190916130952699/feed",
		dataType: "jsonp",
		cache: true,
		error: function(e) {
			$("#wrapper").append("Error loading document".e);
		},
		success: function(data) {
			var string = "";
			var title = "";
			var likecode = "";
			var tweetcode = "";
			
			$mycounter = 0;

			//string += '<ul>';

			$.each(data.data, function(i, item) { 
			
				if($mycounter>4) {  return; }

				fblinkarray = item.id.split("_");
				fbfulllink = 'http://www.facebook.com/permalink.php?story_fbid=' +fblinkarray[1]+ '&id=' +fblinkarray[0];
			    likecode = '<iframe src="http://www.facebook.com/plugins/like.php?href='+item.id+'&amp;layout=button_count&amp;show_faces=false&amp;width=125&amp;action=like&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:125px; height:22px;" allowTransparency="true"></iframe>';
				linkherecode = location.href+'#'+item.id;	

				tweetcode = '<a href="http://twitter.com/share" class="twitter-share-button" data-related="brianmyrick" data-url="'+fbfulllink+'" data-text="'+item.name+'" data-count="none">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"><\/script>';
							
				string += '<p><a style="color: black;" href="/share#'+item.id+'">'+item.name+'</a></p>';


				
				$mycounter++;
				
			
			});

			//string += '<ul>';

			$("#fbfeedwidgetwrapper").html(string);

			}		
		});
 });
