$(document).ready(function() {
	// Hide and Show Share Menu by hovering over the Share link
		var hide = false;
		$(".share-storylist a.sharing").hover(function(){
			var shareMenu = $(this).parent().children(".share-hover");
			if (hide) clearTimeout(hide);
				$(shareMenu).fadeIn();
			}, function() {
			hide = setTimeout(function() {
				$(".share-hover").fadeOut("150");
			}, 10);
		});
		$(".share-hover").hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {
				$(".share-hover").fadeOut("150");
			}, 10);
        });
		$(".share-storylist a.sharing").click(function(){
			return false;
		});

});