$('#xSearch').focus(function(){

	if (this.value == "Enter Keywords Here") {

		this.value = "";

	}

});



$('#xSearch').blur(function(){

	if (this.value == "") {

		this.value = "Enter Keywords Here";

	}

});
