// Share on Facebook links added to News items
jQuery(document).ready(function()
{
	

	// Add the social networking links for news items
	if (document.location.href.indexOf('news/') > 0)
	{
		$("<script>function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script><style> html .fb_share_link { padding:2px 0 0 20px; height:16px; background:url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif?8:26981) no-repeat center left; }</style><a href=\"http://www.facebook.com/share.php?u="+document.location+"\" onclick=\"return fbs_click()\" target=\"_blank\" class=\"fb_share_link\">Share on Facebook</a>").appendTo("#left-cont");
	}
});



