$(function(){
	 $('#globalsearch input[type="text"]').focus(function() {
			  
			  if (this.value == this.defaultValue){ 
			  	this.value = '';
			  	$(this).css("color", '#000' );
			  }
	  });
	 $('#globalsearch input[type="text"]').blur(function() {
			  if (this.value == ''){ 
			  	this.value = this.defaultValue;
			  	$(this).css("color", '#999' );
			  }
	  });
});
