$(function() {
	// select all desired input fields and attach tooltips to them
	$(".myform :input[title]").tooltip({
	
		// place tooltip on the right edge
		position: "center right",
	
		// a little tweaking of the position
		offset: [-2, 10],
	
		// use the built-in fadeIn/fadeOut effect
		effect: "fade",
	
		// custom opacity setting
		opacity: 0.9,
	
		// use this single tooltip element
		tip: '.tooltip'
	
	});
	
	// select all desired input fields and attach tooltips to them
	$(".myformlogin :input[title]").tooltip({
	
		// place tooltip on the right edge
		position: "center right",
	
		// a little tweaking of the position
		offset: [-2, 10],
	
		// use the built-in fadeIn/fadeOut effect
		effect: "fade",
	
		// custom opacity setting
		opacity: 0.9,
	
		// use this single tooltip element
		tip: '.tooltip'
	
	});	
	
	// select all desired input fields and attach tooltips to them
	$(".myformsonstige :input[title]").tooltip({
	
		// place tooltip on the right edge
		position: "center right",
	
		// a little tweaking of the position
		offset: [-2, 10],
	
		// use the built-in fadeIn/fadeOut effect
		effect: "fade",
	
		// custom opacity setting
		opacity: 0.9,
	
		// use this single tooltip element
		tip: '.tooltip'
	
	});		
});


