function trim(stringToTrim) { return stringToTrim.replace(/^\s+|\s+$/g,""); } 

$(document).ready(function() {
$("#searchString").focus(function() {
						  		if (trim($(this).val())=="keyword or Item #") {
									$(this).val('');									
								}								
						  }
			    );
				
$("#searchString").blur(function() {						  		
						  		if (trim($(this).val())=="") {
									$(this).val('keyword or Item #');									
								}								
						  }
			    );
				
});

	

