function sharethis(href, encoding) 
{
	var link;
	if (encoding == null)
	link = href.replace('URL', encodeURIComponent(document.location.toString()));
	else
	link = href.replace('URL', document.location.toString());
	link = link.replace('TITEL', document.title);
	window.open(link, 'share');
} 
$(document).ready(function () {
	$(".sharelayer").hide();
	$(".followlayer").hide();
	$(".sharing").hover(
	function () {
		$(".sharelayer,.followlayer").fadeIn(100);
	},
	function () {
		$(".sharelayer,.followlayer").fadeOut(100);
	}
	);
}); 
