$(function(){
	
	$('.clickclear').live('blur', function(){ 
		
		if(this.value == '')
			this.value = this.defaultValue;
	
	});		
	
	$('.clickclear').live('focus',function(){
		
		if(this.value == this.defaultValue)
			this.value = '';
		
	});
	
});
