// JavaScript Document
function socialnetworking() {
	$(function () {
		var pageTitle = $('title').text().replace(/\s/g,'+');
		$('#sharefacebook').attr('href', 'http://www.facebook.com/sharer.php?u=' + document.URL);
		$('#sharestumbleupon').attr('href', 'http://www.stumbleupon.com/submit?url=' + document.URL + '&title=' + pageTitle);
		$('#sharedigg').attr('href', 'http://digg.com/submit?url=' + document.URL + '&title='+ pageTitle);
		$('#sharegoogle').attr('href', 'http://www.google.com/bookmarks/mark?op=edit&bkmk=' + document.URL + '&title='+ pageTitle);
		$('#sharereddit').attr('href', 'http://www.reddit.com/submit?url=' + document.URL + '&title='+ pageTitle);
		$('#sharetwitter').attr('href', 'http://twitter.com/home?status=Currently+reading+' + document.URL);
	});
}
