function InputHelperIn(obj,text){ if (obj.value == text) $(obj).css({color:'#000000',fontStyle:'normal',fontWeight:'normal'}).val(''); }
function InputHelperOut(obj, text ){ if(obj.value=='' || obj.value==text) $(obj).css({color:'#A0A0A0',fontStyle:'italic',fontWeight:'normal'}).val(text); }
function InputHelperCreate(obj,text){ $(obj).bind('focus',function(){ InputHelperIn(this,text); }).bind('blur',function(){ InputHelperOut(this,text); }); InputHelperOut(obj,text); }
function InputHelperCreateId(path,value){ var id=$(path); if(typeof id.val() !== "undefined") InputHelperCreate( id.get(0),value); }
