// JavaScript Document
function loadBookmarkLinks(showAll){
	var theSpan = document.getElementById('social_bookmark_links');
	var theURL = encodeURIComponent(document.location.href);
	var theTitle = encodeURIComponent(document.title);
	var theInnerHTML = "";
	var amanet = "http://www.amanet.org";
	//theInnerHTML += '<strong>Share:</strong> &nbsp;';
	//if(showAll){
		//theInnerHTML += '<br />';
	//}
		theInnerHTML += '<strong>Share:</strong>&nbsp;&nbsp;';
	theInnerHTML += '<a name="&lid=Social_delicious&lpos=right_nav" href="http://del.icio.us/post?url='+theURL+'&amp;title='+theTitle+'" target="_blank" title="Save to del.icio.us"><img src="'+amanet+'/images/icons/delicious.gif" width="16" height="16" alt="Save to del.icio.us" style="float:none" border="0"/></a>';
	theInnerHTML += ' <a name="&lid=Social_digg&lpos=right_nav" href="http://digg.com/submit?phase=2&amp;url='+theURL+'&amp;title='+theTitle+'" target="_blank" title="Digg This"><img src="'+amanet+'/images/icons/digg.gif" width="16" height="16" alt="Digg This" style="float:none" border="0"/></a>';
	theInnerHTML += ' <a name="&lid=Social_facebook&lpos=right_nav" href="http://www.facebook.com/share.php?u='+theURL+'" target="_blank" title="Share on Facebook"><img src="'+amanet+'/images/icons/facebook.gif" width="16" height="16" alt="Share on Facebook" style="float:none" border="0"/></a>';
	theInnerHTML += ' <a name="&lid=Social_stumbleupon&lpos=right_nav" href="http://www.stumbleupon.com/submit?url='+theURL+'&amp;title='+theTitle+'" target="_blank" title="Stumble it"><img src="'+amanet+'/images/icons/stumbleupon.gif" width="16" height="16" alt="Stumble it" style="float:none" border="0"/></a>';
	theInnerHTML += ' <a name="&lid=Social_google&lpos=right_nav" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk='+theURL+'&amp;title='+theTitle+'" target="_blank" title="Add to my Google Bookmarks!"><img src="'+amanet+'/images/icons/google.gif" width="16" height="16" alt="Add to my Google Bookmarks!" style="float:none" border="0"/></a>';
	if(showAll){
		theInnerHTML += '<br />';
	}
	//theInnerHTML += ' <a href="http://www.furl.net/storeIt.jsp?u='+theURL+'&amp;t='+theTitle+'" target="_blank" title="Save on Furl"><img src="http://www.furl.net/sites/furl/i/lil_furl_butt.gif" width="16" height="16" alt="Furl This Post!" style="float:none" border="0"/></a>';
	theInnerHTML += ' <a name="&lid=Social_yahoo&lpos=right_nav" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u='+theURL+'&amp;t='+theTitle+'" target="_blank" title="Add to YahooMyWeb"><img src="'+amanet+'/images/icons/yahoo.gif" width="16" height="16" alt="Add to YahooMyWeb" style="float:none" border="0"/></a>';
	if(showAll){
		theInnerHTML += ' <a name="&lid=Social_technorati&lpos=right_nav" href="http://technorati.com/faves?add='+theURL+'" target="_blank" title="Add to my Technorati Favorites!"><img src="'+amanet+'/images/icons/technorati.gif" width="16" height="16" alt="Add to my Technorati Favorites" style="float:none" border="0"/></a>';
		theInnerHTML += ' <a name="&lid=Social_newsvine&lpos=right_nav" href="http://www.newsvine.com/_tools/seed&amp;save?u='+theURL+'&amp;h='+theTitle+'" target="_blank" title="Add to NewsVine"><img src="'+amanet+'/images/icons/newsvine.gif" width="16" height="16" alt="Add to NewsVine" style="float:none" border="0"/></a>';
		theInnerHTML += ' <a name="&lid=Social_reddit&lpos=right_nav" href="http://reddit.com/submit?url='+theURL+'&amp;title='+theTitle+'" target="_blank" title="Save to Reddit"><img src="'+amanet+'/images/icons/reddit.gif" width="16" height="16" alt="Save to Reddit" style="float:none" border="0"/></a>';
		//theInnerHTML += ' <a href="http://www.bloglines.com/sub/'+theURL+'" target="_blank" title="Add to Bloglines!"><img src="http://www.oraclebrains.com/download/obsocialbookmarker/images/bloglines.jpg" width="16" height="16" alt="Bloglines" style="float:none" border="0"/></a>';
	}
	theSpan.innerHTML = theInnerHTML;
}

