$('.query_form input[type="text"]').focus(function() {  

	if (this.value == this.defaultValue){  
	this.value = '';  
	}
	  
	if(this.value != this.defaultValue){  
	this.select();  
	}  
	});  

$('.query_form input[type="text"]').blur(function() {  
		if($(this).attr('value') == "")
		{
			$(this).attr('value', this.defaultValue)
		}
	});  
	

$('.query_form textarea').focus(function() {  

	if (this.value == this.defaultValue){  
	this.value = '';  
	}
	  
	if(this.value != this.defaultValue){  
	this.select();  
	}  
	});  

$('.query_form textarea').blur(function() {  
		if($(this).attr('value') == "")
		{
			$(this).attr('value', this.defaultValue)
		}
	});  


$('input[name="txtSearch"]').focus(function(){
	if (this.value == this.defaultValue){  
	this.value = '';  
	}
	  
	if(this.value != this.defaultValue){  
this.select();  
	}  
});  

$('input[name="txtSearch"]').blur(function() {  
		if($(this).attr('value') == "")
		{
			$(this).attr('value', this.defaultValue)
		}
	});  
	
