function socialBookmark()
{
	var html = '';
	var docHref = encodeURIComponent(location.href);
	var docTitle = encodeURIComponent(document.title);
	
	var bookmarks = [
		{domain:'delicious.com',   url:'http://delicious.com/save?url=' + docHref + '&amp;title=' + docTitle},
		{domain:'digg.com',        url:'http://digg.com/submit?url=' + docHref + '&amp;title=' + docTitle},
		{domain:'diigo.com',       url:'http://www.furl.net/storeIt.jsp?u=' + docHref + '&amp;t=' + docTitle},
		{domain:'facebook.com',    url:'http://de.facebook.com/sharer.php?u=' + docHref + '&amp;t=' + docTitle},
		{domain:'favoriten.de',    url:'http://www.favoriten.de/url-hinzufuegen.html?bm_url=' + docHref + '&amp;bm_title=' + docTitle},
		{domain:'folkd.com',       url:'http://www.folkd.com/submit/page/' + document.location.href},
		{domain:'google.com',      url:'http://www.google.com/bookmarks/mark?op=add&amp;bkmk=' + docHref + '&amp;title=' + docTitle},
		{domain:'linkarena.com',   url:'http://linkarena.com/bookmarks/addlink/?url=' + docHref + '&amp;title=' + docTitle},
		{domain:'live.com',        url:'https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=de-de&amp;url=' + docHref + '&amp;title=' + docTitle + '&amp;top=1'},
		{domain:'mister-wong.de',  url:'http://www.mister-wong.de/index.php?action=addurl&amp;bm_url=' + docHref + '&amp;bm_description=' + docTitle},
		{domain:'newsvine.com',    url:'http://www.newsvine.com/_tools/seed?popoff=0&amp;u=' + docHref + '&amp;h=' + docTitle},
		{domain:'oneview.de',      url:'http://www.oneview.de/add/?URL=' + docHref + '&amp;title=' + docTitle},
		{domain:'reddit.com',      url:'http://reddit.com/submit?url=' + docHref +'&amp;title=' + docTitle},
		{domain:'stumbleupon.com', url:'http://www.stumbleupon.com/submit?url=' + docHref + '&amp;title=' + docTitle},
		{domain:'twitter.com',     url:'http://twitter.com/home?status=' + docHref},
		{domain:'yigg.de',         url:'http://www.yigg.de/neu?exturl=' + docHref + '&amp;exttitle=' + docTitle},
	];

	html += '<div id="SocialBookmark">';

	for (var i=0; i<bookmarks.length; i++) {
		html += ' <a rel="nofollow" target="_blank" href="' + bookmarks[i].url + '" title="Diese Seite bei ' + bookmarks[i].domain + ' eintragen"><img src="' + ROOT + '/gfx/' + bookmarks[i].domain + '.png" border="0" alt="" /></a> ';
	}

	html += '</div>';

	document.write(html);
}

