$(function(){
	$('#content .share').each(function() {
		var image = '';
		var $image = $('#share-image');
		if ($image.size()) image = $image[0].src;
		$(this).share({
		  services:		['facebook', 'twitter'],
			title: $.trim($('.share-title', $(this).closest('.share-block')).text()),
			description: $.trim($('.share-description', $(this).closest('.share-block')).text().replace(/(<([^>]+)>)/ig, "")),
			tags: $.trim($('.share-tags', $(this).closest('.share-block')).text().replace(/(<([^>]+)>)/ig, "")).replace(/\s*-\s*/ig, ',').replace(/[- ]/ig, ','),
			image: image
		});
	});
})
