<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Anything They Can Do &#187; Deep Zoom</title>
	<atom:link href="http://www.anythingtheycando.com/blog/index.php/tag/deep-zoom/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anythingtheycando.com/blog</link>
	<description>Why can&#039;t you?</description>
	<lastBuildDate>Wed, 16 Nov 2011 20:23:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Facebook Friends Live Collection</title>
		<link>http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/</link>
		<comments>http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 04:27:21 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Pivot]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[Deep Zoom]]></category>
		<category><![CDATA[Facebook API]]></category>
		<category><![CDATA[Facebook Development]]></category>
		<category><![CDATA[Facebook Friends]]></category>

		<guid isPermaLink="false">http://www.anythingtheycando.com/blog/?p=79</guid>
		<description><![CDATA[Yesterday, I presented you with a demo video of my Facebook Friends Collection for Pivot. Today, I have a live collection for you to play with. (Please note that Pivot is required)
Improved Facebook Friend Demo (I can't seem to get it to run on IIS as GoDaddy has it configured. This is most likely due [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I presented you with a demo video of my Facebook Friends Collection for Pivot. Today, I have a live collection for you to play with. (Please note that Pivot is required)</p>
<p><a style="color: #2a5db0;" href="http://www.coffeehouseplayers.com/pivot/test1.cxml" target="_blank">Improved Facebook Friend Demo</a> (I can't seem to get it to run on IIS as GoDaddy has it configured. This is most likely due to the inability to add MIME types. On the plus side, kudos to the Pivot team for this, as it makes it so a LAMP environment can easily serve it up.)</p>
<p>To make the application work, I have developed an easy-to-use method for turning almost any class in to a collection. This method was utilized in the example below, which shows the inner workings of Facebook Friends.</p>
<div class="codecolorer-container csharp blackboard" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:710px;height:300px;"><div class="csharp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0600FF;">public</span> <span style="color: #FF0000;">class</span> FacebookUser<br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; <span style="color: #0600FF;">private</span> List _books <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> List<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; <span style="color: #0600FF;">private</span> List _activities<span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> List<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; <span style="color: #0600FF;">private</span> List _interests <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> List<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; <span style="color: #0600FF;">private</span> List _movies<span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> List<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; <span style="color: #0600FF;">private</span> List _music <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> List<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; <span style="color: #0600FF;">private</span> List _tv<span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> List<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span>IsName <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">string</span> Name <span style="color: #000000;">&#123;</span> get<span style="color: #008000;">;</span> set<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span>IsDescription <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">string</span> Desc <span style="color: #000000;">&#123;</span> get<span style="color: #008000;">;</span> set<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span>FacetDisplayName <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Books&quot;</span>, FacetType <span style="color: #008000;">=</span> FacetTypes.<span style="color: #FF0000;">String</span>, IsFacet <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span>,IsCollection <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> List Books<br />
&nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; get <span style="color: #000000;">&#123;</span> <span style="color: #0600FF;">return</span> _books<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; set <span style="color: #000000;">&#123;</span> _books <span style="color: #008000;">=</span> value<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
&nbsp; <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span> IsImage <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">string</span> Image <span style="color: #000000;">&#123;</span> get<span style="color: #008000;">;</span> set<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span>FacetDisplayName <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Gender&quot;</span>, FacetType <span style="color: #008000;">=</span> FacetTypes.<span style="color: #FF0000;">String</span>, IsFacet <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">string</span> Sex <span style="color: #000000;">&#123;</span> get<span style="color: #008000;">;</span> set<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span>FacetDisplayName <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Relationship Status&quot;</span>, FacetType <span style="color: #008000;">=</span> FacetTypes.<span style="color: #FF0000;">String</span>, IsFacet <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">string</span> RelationshipStatus <span style="color: #000000;">&#123;</span> get<span style="color: #008000;">;</span> set<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span>FacetDisplayName <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Political Views&quot;</span>, FacetType <span style="color: #008000;">=</span> FacetTypes.<span style="color: #FF0000;">String</span>, IsFacet <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">string</span> PoliticalViews <span style="color: #000000;">&#123;</span> get<span style="color: #008000;">;</span> set<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span>FacetDisplayName <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Birth Date&quot;</span>, FacetType <span style="color: #008000;">=</span> FacetTypes.<span style="color: #FF0000;">String</span>, IsFacet <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">string</span> BirthDate <span style="color: #000000;">&#123;</span> get<span style="color: #008000;">;</span> set<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span>FacetDisplayName <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Activities&quot;</span>, FacetType <span style="color: #008000;">=</span> FacetTypes.<span style="color: #FF0000;">String</span>, IsFacet <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span>, IsCollection <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> List Activities<br />
&nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; get <span style="color: #000000;">&#123;</span> <span style="color: #0600FF;">return</span> _activities<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; set <span style="color: #000000;">&#123;</span> _activities <span style="color: #008000;">=</span> value<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
&nbsp; <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span>FacetDisplayName <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;TV Shows&quot;</span>, FacetType <span style="color: #008000;">=</span> FacetTypes.<span style="color: #FF0000;">String</span>, IsFacet <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span>, IsCollection <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> List Tv<br />
&nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; get <span style="color: #000000;">&#123;</span> <span style="color: #0600FF;">return</span> _tv<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; set <span style="color: #000000;">&#123;</span> _tv <span style="color: #008000;">=</span> value<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
&nbsp; <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span>FacetDisplayName <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Music&quot;</span>, FacetType <span style="color: #008000;">=</span> FacetTypes.<span style="color: #FF0000;">String</span>, IsFacet <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span>, IsCollection <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> List Music<br />
&nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; get <span style="color: #000000;">&#123;</span> <span style="color: #0600FF;">return</span> _music<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; set <span style="color: #000000;">&#123;</span> _music <span style="color: #008000;">=</span> value<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
&nbsp; <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span>FacetDisplayName <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Movies&quot;</span>, FacetType <span style="color: #008000;">=</span> FacetTypes.<span style="color: #FF0000;">String</span>, IsFacet <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span>, IsCollection <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> List Movies<br />
&nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; get <span style="color: #000000;">&#123;</span> <span style="color: #0600FF;">return</span> _movies<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; set <span style="color: #000000;">&#123;</span> _movies <span style="color: #008000;">=</span> value<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
&nbsp; <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; <span style="color: #000000;">&#91;</span>PivotItem<span style="color: #000000;">&#40;</span>FacetDisplayName <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Intrests&quot;</span>, FacetType <span style="color: #008000;">=</span> FacetTypes.<span style="color: #FF0000;">String</span>, IsFacet <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span>, IsCollection <span style="color: #008000;">=</span> <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0600FF;">public</span> List Interests<br />
&nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; get <span style="color: #000000;">&#123;</span> <span style="color: #0600FF;">return</span> _interests<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; set <span style="color: #000000;">&#123;</span> _interests <span style="color: #008000;">=</span> value<span style="color: #008000;">;</span> <span style="color: #000000;">&#125;</span><br />
&nbsp; <span style="color: #000000;">&#125;</span><br />
<span style="color: #000000;">&#125;</span></div></div>
<p>In order to populate the collection, I do something like this:</p>
<div class="codecolorer-container csharp blackboard" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:710px;"><div class="csharp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">PivotCollection friends <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> PivotCollection<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span><br />
<span style="color: #008000;">&lt;</span>span<span style="color: #008000;">&gt;</span><span style="color: #008080; font-style: italic;">// &lt;/span&gt;In this space, there are about forty (40) lines of code that pull the data out of the Facebook API from CodePlex</span><br />
<span style="color: #008000;">&lt;</span>span<span style="color: #008000;">&gt;</span><span style="color: #008080; font-style: italic;">// and put it in to an instance of the above class. Then I add the data to the collection as follows:&lt;/span&gt;</span><br />
friends.<span style="color: #0000FF;">Items</span>.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span>facebookUserInstance<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span><br />
friends.<span style="color: #0000FF;">CollectionName</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Facebook Friends&quot;</span><span style="color: #008000;">;</span><br />
friends.<span style="color: #0000FF;">WriteCollectionToFileSystem</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;test1.cxml&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span><br />
<span style="color: #008000;">&lt;</span>span<span style="color: #008000;">&gt;</span><span style="color: #008080; font-style: italic;">// &lt;/span&gt;&lt;span&gt;Next, I run the two command line tools for converting my friends' pictures into deep-zoom images and voila! It is done!&lt;/span&gt;</span></div></div>
<p>I will be posting the Project for how the above works once the source code is cleaned up a bit and I am able to provide better documentation.</p>
<p>If you would like a copy of it before then, feel free to ask. I would be happy to send it to you if you post  a comment requesting it.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d79').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d79" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Facebook+Friends+Live+Collection&amp;Description=Facebook+Friends+Live+Collection&amp;Url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;submitHeadline=Facebook+Friends+Live+Collection&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dotnetkicks.com/kick/?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;DotNetKicks"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/dotnetkicks.png" title="Add to&nbsp;DotNetKicks" alt="Add to&nbsp;DotNetKicks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=Facebook+Friends+Live+Collection&amp;url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;h=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://faves.com/Authoring.aspx?u=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;t=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Faves"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/bluedot.png" title="Add to&nbsp;Faves" alt="Add to&nbsp;Faves" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://FriendSite.com/users/bookmarks/?u=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;t=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;FriendSite"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/friendsite.png" title="Add to&nbsp;FriendSite" alt="Add to&nbsp;FriendSite" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kaboodle.com/za/selectpage?p_pop=false&amp;pa=url&amp;u=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/" rel="nofollow" title="Add to&nbsp;Kaboodle"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/kaboodle.png" title="Add to&nbsp;Kaboodle" alt="Add to&nbsp;Kaboodle" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.maple.nu/cgi-bin/search6/usa/ss_submit.cgi?fct=100&amp;url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Maple"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/maple.png" title="Add to&nbsp;Maple" alt="Add to&nbsp;Maple" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;bm_description=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;T=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;h=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Newsvine"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/newsvine.png" title="Add to&nbsp;Newsvine" alt="Add to&nbsp;Newsvine" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.plugim.com/submit?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;PlugIM"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/plugim.png" title="Add to&nbsp;PlugIM" alt="Add to&nbsp;PlugIM" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Simpy"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/simpy.png" title="Add to&nbsp;Simpy" alt="Add to&nbsp;Simpy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kirtsy.com//submit.php?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/" rel="nofollow" title="Add to&nbsp;Kirtsy"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/skirt.png" title="Add to&nbsp;Kirtsy" alt="Add to&nbsp;Kirtsy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shoutwire.com/?p=submit&amp;link=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/" rel="nofollow" title="Add to&nbsp;Shoutwire"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/shoutwire.png" title="Add to&nbsp;Shoutwire" alt="Add to&nbsp;Shoutwire" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/" rel="nofollow" title="Add to&nbsp;Squidoo"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/squidoo.png" title="Add to&nbsp;Squidoo" alt="Add to&nbsp;Squidoo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.sphere.com/sphereit/http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/" rel="nofollow" title="Add to&nbsp;SphereIt"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/sphereit.png" title="Add to&nbsp;SphereIt" alt="Add to&nbsp;SphereIt" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.thisnext.com/pick/new/submit/sociable/?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;name=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;ThisNext"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/thisnext.png" title="Add to&nbsp;ThisNext" alt="Add to&nbsp;ThisNext" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Facebook+Friends+Live+Collection+@+http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://webride.org/discuss/split.php?uri=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Webride"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/webride.png" title="Add to&nbsp;Webride" alt="Add to&nbsp;Webride" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.wists.com/t.php?c=null&amp;r=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;u=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;title={text}" rel="nofollow" title="Add to&nbsp;Wists"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/wists.png" title="Add to&nbsp;Wists" alt="Add to&nbsp;Wists" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/&amp;t=Facebook+Friends+Live+Collection" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d79').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d79').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.anythingtheycando.com/blog/index.php/2009/12/01/facebook-friends-live-collection/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Pivot &#8211; Facebook Friends</title>
		<link>http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/</link>
		<comments>http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 02:03:38 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Pivot]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[Deep Zoom]]></category>

		<guid isPermaLink="false">http://anythingtheycando.com/blog/?p=72</guid>
		<description><![CDATA[Today, I finished up a simple example of what you can do with Pivot from Microsoft's Live Labs. The concept is simple: Using the powerful data visualization tool that is Pivot, it is possible to visualize the wide range of information that Facebook tracks about all of its users and what is available to you [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I finished up a simple example of what you can do with Pivot from Microsoft's Live Labs. The concept is simple: Using the powerful data visualization tool that is Pivot, it is possible to visualize the wide range of information that Facebook tracks about all of its users and what is available to you regarding your Facebook friends. This demo is just the tip of the iceberg. Currently, it displays your friends’ places of employment, colleges, sex, wall post counts, “About Me,” name, profile picture, and birth date. I intend to have this app display much more information. I will be working on it over the next week or so in order to expand its potential.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/dMJVuqOhOQw&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/dMJVuqOhOQw&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d72').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d72" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Pivot+%26%238211%3B+Facebook+Friends&amp;Description=Pivot+%26%238211%3B+Facebook+Friends&amp;Url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;submitHeadline=Pivot+%26%238211%3B+Facebook+Friends&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dotnetkicks.com/kick/?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;DotNetKicks"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/dotnetkicks.png" title="Add to&nbsp;DotNetKicks" alt="Add to&nbsp;DotNetKicks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=Pivot+%26%238211%3B+Facebook+Friends&amp;url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;h=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://faves.com/Authoring.aspx?u=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;t=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Faves"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/bluedot.png" title="Add to&nbsp;Faves" alt="Add to&nbsp;Faves" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://FriendSite.com/users/bookmarks/?u=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;t=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;FriendSite"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/friendsite.png" title="Add to&nbsp;FriendSite" alt="Add to&nbsp;FriendSite" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kaboodle.com/za/selectpage?p_pop=false&amp;pa=url&amp;u=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/" rel="nofollow" title="Add to&nbsp;Kaboodle"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/kaboodle.png" title="Add to&nbsp;Kaboodle" alt="Add to&nbsp;Kaboodle" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.maple.nu/cgi-bin/search6/usa/ss_submit.cgi?fct=100&amp;url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Maple"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/maple.png" title="Add to&nbsp;Maple" alt="Add to&nbsp;Maple" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;bm_description=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;T=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;h=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Newsvine"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/newsvine.png" title="Add to&nbsp;Newsvine" alt="Add to&nbsp;Newsvine" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.plugim.com/submit?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;PlugIM"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/plugim.png" title="Add to&nbsp;PlugIM" alt="Add to&nbsp;PlugIM" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Simpy"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/simpy.png" title="Add to&nbsp;Simpy" alt="Add to&nbsp;Simpy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kirtsy.com//submit.php?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/" rel="nofollow" title="Add to&nbsp;Kirtsy"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/skirt.png" title="Add to&nbsp;Kirtsy" alt="Add to&nbsp;Kirtsy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shoutwire.com/?p=submit&amp;link=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/" rel="nofollow" title="Add to&nbsp;Shoutwire"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/shoutwire.png" title="Add to&nbsp;Shoutwire" alt="Add to&nbsp;Shoutwire" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/" rel="nofollow" title="Add to&nbsp;Squidoo"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/squidoo.png" title="Add to&nbsp;Squidoo" alt="Add to&nbsp;Squidoo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.sphere.com/sphereit/http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/" rel="nofollow" title="Add to&nbsp;SphereIt"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/sphereit.png" title="Add to&nbsp;SphereIt" alt="Add to&nbsp;SphereIt" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.thisnext.com/pick/new/submit/sociable/?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;name=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;ThisNext"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/thisnext.png" title="Add to&nbsp;ThisNext" alt="Add to&nbsp;ThisNext" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Pivot+%26%238211%3B+Facebook+Friends+@+http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://webride.org/discuss/split.php?uri=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Webride"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/webride.png" title="Add to&nbsp;Webride" alt="Add to&nbsp;Webride" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.wists.com/t.php?c=null&amp;r=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;u=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;title={text}" rel="nofollow" title="Add to&nbsp;Wists"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/wists.png" title="Add to&nbsp;Wists" alt="Add to&nbsp;Wists" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/&amp;t=Pivot+%26%238211%3B+Facebook+Friends" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.anythingtheycando.com/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d72').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d72').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.anythingtheycando.com/blog/index.php/2009/11/30/pivot-facebook-friends/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

