function addSocialEvents () {
	var anchor = document.getElementById('DiggIcon');
	
	if (anchor) {
	  anchor.href   = 'http://digg.com/submit?phase=2&url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title);
		anchor.target = "_blank";
	}

	anchor = document.getElementById('RedditIcon');
	if (anchor) {
	  anchor.href   = 'http://reddit.com/submit?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title);
		anchor.target = "_blank";
	}

	anchor = document.getElementById('DeliciousIcon');
	if (anchor) {
	  anchor.href   = 'http://del.icio.us/post?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title);
		anchor.target = "_blank";
	}

	anchor = document.getElementById('BlinkBitsIcon');
	if (anchor) {
	  anchor.href   = 'http://blinkbits.com/bookmarklets/save.php?v=1&source_url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title);
		anchor.target = "_blank";
	}

	anchor = document.getElementById('BlinkListIcon');
	if (anchor) {
	  anchor.href   = 'http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url='+encodeURIComponent(document.location.href)+'&Title='+encodeURIComponent(document.title);
		anchor.target = "_blank";
	}

	anchor = document.getElementById('FurlIcon');
	if (anchor) {
	  anchor.href   = 'http://www.furl.net/storeIt.jsp?t='+encodeURIComponent(document.title)+'&u='+encodeURIComponent(document.location.href);
		anchor.target = "_blank";
	}

	anchor = document.getElementById('SpurlIcon');
	if (anchor) {
	  anchor.href   = 'http://www.spurl.net/spurl.php?url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title);
		anchor.target = "_blank";
	}

	anchor = document.getElementById('YahooIcon');
	if (anchor) {
	  anchor.href   = 'http://myweb2.search.yahoo.com/myresults/bookmarklet?t='+encodeURIComponent(document.title)+'&u='+encodeURIComponent(document.location.href);
		anchor.target = "_blank";
	}

	anchor = document.getElementById('TechnoratiIcon');
	if (anchor) {
	  anchor.href   = 'http://technorati.com/faves/?add='+encodeURIComponent(document.title);
		anchor.target = "_blank";
	}
}

addEvent(window, 'load', addSocialEvents);
