$(function() { 

	$(".HighlightPanel input.Tip").tooltip({
		position: "center",   // place tooltip on the right edge
		offset: [17, 33],   // a little tweaking of the position
		effect: "fade", // use the built-in fadeIn/fadeOut effect
		opacity: 0.99,   // custom opacity setting
		tip: '.InfoToolTip' // use this single tooltip elementChoose to enter a name or nickname if you prefer or you can simply enter your real name here as well.
	});
	
	
	$(".HighlightPanel img.Tip").tooltip({
		position: "center",   // place tooltip on the right edge
		/*offset: [-215, -155],   // a little tweaking of the position*/
		offset: [15, 0],   // a little tweaking of the position
		effect: "fade", // use the built-in fadeIn/fadeOut effect
		opacity: 0.99,   // custom opacity setting
		tip: '.InfoToolTip' // use this single tooltip element
	});
	
	
});
