function fixToolTips(){} // override function for widgets

// THIS IS USED FOR FIELD HINTS ON THE WIDGETS
function init(){
	var checkInput = function(){
		var $this = jQuery(this);
		if($this.val()=="")$this.val($this.attr("fieldhint"));
	};
	jQuery("[fieldhint]").bind("focus", function(){
		var $this = jQuery(this);
		if($this.val()==$this.attr("fieldhint"))$this.val("");
	}).bind("blur",checkInput).each(checkInput);
};

jQuery(document).ready(init);
