function WT_Form__Load() {
	$("form.WTFormTooltip input[title!='']").tooltip({  
 
	    // place tooltip on the right edge 
	    position: "center right", 
	 
	    // a little tweaking of the position 
	    offset: [-2, 10], 
	 
	    // use a simple show/hide effect 
	    effect: "fade", 
	     
	    // custom opacity setting 
	    opacity: 0.7, 
	     
	    // use this single tooltip element 
	    tip: '.WTFormTooltipDiv' 
	     
	});
	$("form.WTFormTooltip fieldset[title!='']").tooltip({  
 
	    // place tooltip on the right edge 
	    position: "center right", 
	 
	    // a little tweaking of the position 
	    offset: [-2, 10], 
	 
	    // use a simple show/hide effect 
	    effect: "fade", 
	     
	    // custom opacity setting 
	    opacity: 0.7, 
	     
	    // use this single tooltip element 
	    tip: '.WTFormTooltipDiv' 
	     
	});
}
funcs_Load.push("WT_Form__Load");

