jQuery(document).ready(function(){
	jQuery('.social-bookmarking a').hover(
		function(){
			jQuery(this).find('span').show();
		},
		function(){
			jQuery(this).find('span').hide();
		}
	);
});

