
// execute your scripts when the DOM is ready. this is a good habit
$(function() {



// select all desired input fields and attach tooltips to them
$("#form-home :input").tooltip({

	// place tooltip on the right edge
	position: "top left",

	// a little tweaking of the position
	offset: [24, -2],

	// use the built-in fadeIn/fadeOut effect
	effect: "fade",

	// custom opacity setting
	opacity: 1

});
});

