/*
 * remove field value on focus
 */



$(function(){
   $(":input[type=text], :input[type='textarea']").focus(function(){
	if($.trim(this.value) === $.trim(this.defaultValue)){
		this.value = "";
	}
   }).blur(function(){
   	var value = $.trim(this.value);
	if(value !== $.trim(this.defaultValue) && value === ""){
		this.value = this.defaultValue;
	}
   });
});