			var sText = "搜索";
			var src_T = true;
		
			function onSearchInputInput(){
				src_T = false;
			}
			
			function onSearchInputFocus(pge_E) {
				if (src_T) {
					src_T = false;
					pge_E.value = "";
				}
				pge_E.select();
			}
			
			function onSearchInputBlur(pge_E) {
				if (!pge_E.value) {
					src_T = true;
					pge_E.value = sText;
				}
			}
