diff --git a/indra/newview/llavatarlist.cpp b/indra/newview/llavatarlist.cpp
index 771419f60acc303143434fcfcf001e92bf9f7ce2..37de2d579386f679a1512c85f06dac545ae97dfc 100644
--- a/indra/newview/llavatarlist.cpp
+++ b/indra/newview/llavatarlist.cpp
@@ -624,3 +624,39 @@ void LLAvalineListItem::setName(const std::string& name)
 		LLAvatarListItem::setAvatarToolTip(formatted_phone);
 	}
 }
+
+/************************************************************************/
+/*             class LLAvatarListSocial                                  */
+/************************************************************************/
+
+static LLDefaultChildRegistry::Register<LLAvatarListSocial> s("avatar_list_social");
+
+LLAvatarListSocial::LLAvatarListSocial(const Params& p) : LLAvatarList(p)
+{
+
+}
+
+void LLAvatarListSocial::addSocialItem(const LLUUID& id, const std::string& name, BOOL is_online, EAddPosition pos)
+{
+	LLAvatarListItem* item = new LLAvatarListItem();
+	// This sets the name as a side effect
+	item->setAvatarId(id, mSessionID, mIgnoreOnlineStatus, false);
+	item->setAvatarName(name);
+	item->setOnline(mIgnoreOnlineStatus ? true : is_online);
+	item->showLastInteractionTime(mShowLastInteractionTime);
+
+	item->setAvatarIconVisible(mShowIcons);
+	item->setShowInfoBtn(mShowInfoBtn);
+	item->setShowProfileBtn(mShowProfileBtn);
+	item->showSpeakingIndicator(mShowSpeakingIndicator);
+	item->setShowPermissions(mShowPermissions);
+
+	item->setDoubleClickCallback(boost::bind(&LLAvatarListSocial::onItemDoubleClicked, this, _1, _2, _3, _4));
+
+	addItem(item, id, pos);
+}
+
+void LLAvatarListSocial::refresh()
+{
+	
+}
diff --git a/indra/newview/llavatarlist.h b/indra/newview/llavatarlist.h
index 4814a88a79770c2640239b1867659fd6519e650d..cbe595649340d2f8c57c6ced1a39a6fe17208893 100644
--- a/indra/newview/llavatarlist.h
+++ b/indra/newview/llavatarlist.h
@@ -97,10 +97,12 @@ class LLAvatarList : public LLFlatListViewEx
 	void addAvalineItem(const LLUUID& item_id, const LLUUID& session_id, const std::string& item_name);
 	void handleDisplayNamesOptionChanged();
 
-protected:
-	void refresh();
+	
 
-	void addNewItem(const LLUUID& id, const std::string& name, BOOL is_online, EAddPosition pos = ADD_BOTTOM);
+protected:
+	virtual void refresh();
+	virtual void addNewItem(const LLUUID& id, const std::string& name, BOOL is_online, EAddPosition pos = ADD_BOTTOM);
+	
 	void computeDifference(
 		const uuid_vec_t& vnew,
 		uuid_vec_t& vadded,
@@ -110,8 +112,6 @@ class LLAvatarList : public LLFlatListViewEx
 	void onItemDoubleClicked(LLUICtrl* ctrl, S32 x, S32 y, MASK mask);
 	void updateAvatarNames();
 
-private:
-
 	bool isAvalineItemSelected();
 
 	bool mIgnoreOnlineStatus;
@@ -205,4 +205,21 @@ class LLAvalineListItem : public LLAvatarListItem
 	bool mIsHideNumber;
 };
 
+class LLAvatarListSocial : public LLAvatarList
+{
+	public:
+	struct Params : public LLInitParam::Block<Params, LLAvatarList::Params>
+	{
+
+	};
+
+	LLAvatarListSocial(const Params&);
+
+	void addSocialItem(const LLUUID& id, const std::string& name, BOOL is_online, EAddPosition pos = ADD_BOTTOM);
+
+	protected:
+	/*virtual*/ void refresh();
+};
+
+
 #endif // LL_LLAVATARLIST_H
diff --git a/indra/newview/llpanelpeople.cpp b/indra/newview/llpanelpeople.cpp
index 01d68cb9a063fcaa0f206b94c0097a6928bfde9a..7a3e6abb7f947ca1e263ea819d87a37a2aa401f9 100644
--- a/indra/newview/llpanelpeople.cpp
+++ b/indra/newview/llpanelpeople.cpp
@@ -647,7 +647,9 @@ BOOL LLPanelPeople::postBuild()
 	mAllFriendList->setContextMenu(&LLPanelPeopleMenus::gNearbyMenu);
 	mOnlineFriendList->setContextMenu(&LLPanelPeopleMenus::gNearbyMenu);
 	
-	mFbcTestText = getChild<LLPanel>(FBCTEST_TAB_NAME)->getChild<LLTextBox>("fbctest_label");
+	LLPanel * social_tab = getChild<LLPanel>(FBCTEST_TAB_NAME);
+	social_tab->setVisibleCallback(boost::bind(&Updater::setActive, mFbcTestListUpdater, _2));
+	mFacebookFriends = social_tab->getChild<LLAvatarListSocial>("facebook_friends");
 
 	setSortOrder(mRecentList,		(ESortOrder)gSavedSettings.getU32("RecentPeopleSortOrder"),	false);
 	setSortOrder(mAllFriendList,	(ESortOrder)gSavedSettings.getU32("FriendsSortOrder"),		false);
@@ -883,35 +885,10 @@ void LLPanelPeople::updateRecentList()
 
 void LLPanelPeople::updateFbcTestList()
 {
-	if (!mFbcTestText)
-		return;
-
-	if (mFbcTestBrowserHandle.get())
-	{
-		// get the browser data (from the title bar, of course!)
-		std::string title = mFbcTestBrowserHandle.get()->getTitle();
-
-		// if the data is ready (if it says the magic word)
-		if (title.length() >= 2 && title[0] == ':')
-		{
-			// success! :)
-			if (title[1] == ')')
-		{
-				mFbcTestText->setText(std::string("okay, now we can get the list of friends!"));
-			}
-			// failure :(
-			else if (title[1] == '(')
-			{
-				mFbcTestText->setText(std::string("hmm, the authentication failed somehow"));
-			}
-
-			// close the browser window
-			mFbcTestBrowserHandle.get()->die();
-			
-			// stop updating
-			mFbcTestListUpdater->setActive(false);
-		}
-	}
+	mFacebookFriends->addSocialItem(LLUUID(), "TEST", false);
+	
+	// stop updating
+	mFbcTestListUpdater->setActive(false);
 }
 
 void LLPanelPeople::buttonSetVisible(std::string btn_name, BOOL visible)
diff --git a/indra/newview/llpanelpeople.h b/indra/newview/llpanelpeople.h
index dadd2736039195f6fa85bf8549e507ddd78fdafd..a00b5be516b7fd16822557f82917a8b73c9c4760 100644
--- a/indra/newview/llpanelpeople.h
+++ b/indra/newview/llpanelpeople.h
@@ -34,6 +34,7 @@
 #include "llvoiceclient.h"
 
 class LLAvatarList;
+class LLAvatarListSocial;
 class LLAvatarName;
 class LLFilterEditor;
 class LLGroupList;
@@ -149,6 +150,7 @@ class LLPanelPeople
 	LLAvatarList*			mNearbyList;
 	LLAvatarList*			mRecentList;
 	LLGroupList*			mGroupList;
+	LLAvatarListSocial*		mFacebookFriends;
 	LLNetMap*				mMiniMap;
 	
 	LLTextBox*				mFbcTestText;
diff --git a/indra/newview/skins/default/xui/en/panel_people.xml b/indra/newview/skins/default/xui/en/panel_people.xml
index cbb6aff4eac7f19f1813e0ac2f302fcbec456ca0..f3334fd7676a16c31d73cbf6954f1e2f05133e71 100644
--- a/indra/newview/skins/default/xui/en/panel_people.xml
+++ b/indra/newview/skins/default/xui/en/panel_people.xml
@@ -585,14 +585,36 @@ Looking for people to hang out with? Try the [secondlife:///app/worldmap World M
            name="fbctest_panel"
            top="0"
            width="313">
-          <text
-             follows="all"
-             height="356"
+          <accordion
+                    background_visible="true"
+                    bg_alpha_color="DkGray2"
+                    bg_opaque_color="DkGray2"
+                      follows="all"
+                      height="356"
+                      layout="topleft"
+                      left="3"
+                      name="friends_accordion"
+                      top="0"
+                      width="307">
+            <accordion_tab
              layout="topleft"
-             left="3"
-             name="fbctest_label"
-             top="0"
-             width="307"/>
+             height="172"
+             min_height="150"
+             name="tab_facebook"
+             title="Facebook Friends">
+              <avatar_list_social
+               allow_select="true"
+               follows="all"
+               height="172"
+               layout="topleft"
+               left="0"
+               multi_select="true"
+               name="facebook_friends"
+               show_permissions_granted="true"
+               top="0"
+               width="307" />
+            </accordion_tab>
+          </accordion>
           <panel
            background_visible="true"
            follows="left|right|bottom"