$(document).ready(function(){
	
	$(".share img[title]").tooltip({
		
		// custom positioning 
		position: 'top center',
		
		// select the div to target
		tip: "#sharetip",
		
		// tweak the position so that the tip is centered above the icon
		offset:  [-10, 0]
		
	});
	
});
