// JavaScript Document
$("docuemnt").ready(function(){
	
$("#top_searchStr").focus(function(){ 
	//$("#top_searchStr").text("");
	if (document.getElementById("top_searchStr").value=="例如：软件或者软件工程师,选取职位中的关键字"){
	document.getElementById("top_searchStr").value="";
	}
}); 
$("#top_searchStr").blur(function(){ 
	//$("#top_searchStr").text("");
	if (document.getElementById("top_searchStr").value==""){	
		document.getElementById("top_searchStr").value="例如：软件或者软件工程师,选取职位中的关键字";
	}
});
	
})
