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