// share function object
	share : {
		init: function() {
			dataReturn = {
				"title": $('article_title').innerHTML.replace(/<span>/gi,'').replace(/<\/span>/gi,''),
				"blurb": $('article_blurb').innerHTML,
				"url": window.location.href.replace('#','')
			}
			return dataReturn;
		},
		digg: function() {
			var dataObject = this.init();
			this.goURL("http://digg.com/submit?phase=2&url=" + encodeURIComponent(dataObject.url)+ "&title=" + encodeURIComponent(dataObject.title)+ "&bodytext=" + encodeURIComponent(dataObject.blurb));
		},
		yahoo: function() {
			var dataObject = this.init();
			this.goURL("http://buzz.yahoo.com/article/gameprocom109/" + dataObject.url);
		},
		facebook: function() {
			var dataObject = this.init();
			this.goURL("http://www.facebook.com/share.php?u=" + dataObject.url);
		},
		delicious: function() {
			var dataObject = this.init();
			this.goURL("https://secure.del.icio.us/login?url=" + encodeURIComponent(dataObject.url) + "&title=" + encodeURIComponent(dataObject.title) + "&jump=close&partner=addthis&v=4");
		},
		stumbleupon: function() {
			var dataObject = this.init();
			this.goURL("http://www.stumbleupon.com/submit?url=" + dataObject.url+ "&title=" + dataObject.title);
		},
		goURL: function(newURL) {
			window.location.href = newURL;
		}
	}
}
