// execute your scripts when the DOM is ready. this is a good habit
$(function() {
	
	// select all desired input fields and attach tooltips to them
	$(".tip").tooltip({
		
		// place tooltip on the right edge
//		position: ['center', 'right'],
		
		// a little tweaking of the position
		offset: [-12, 20],
		
		// use a simple show/hide effect
		/**/
		effect: 'fade',
		delay: 0,
		fadeInSpeed: 1,
		fadeOutSpeed: 1,
		/** /
		effect: 'slide',
		slideOffset: 30,
		/**/
		
		// custom opacity setting
		opacity: 1
		
	});
	
	$(".tip2").tooltip({
		
		// place tooltip on the right edge
		position: ['center', 'right'],
		
		// a little tweaking of the position
		offset: [-6, 20],
		
		// use a simple show/hide effect
		/**/
		effect: 'fade',
		delay: 0,
		fadeInSpeed: 1,
		fadeOutSpeed: 1,
		/** /
		effect: 'slide',
		slideOffset: 30,
		/**/
		
		// custom opacity setting
		opacity: 0.9
		
	});
	
});
