$(document).ready(function(){
						   
//------------------------- FUNCION RESETEAR VALORES DE CAMPOS INPUT --------------------------------

$('input.focus').focus(function() {
	if (this.value == this.defaultValue){ 
		this.value = '';
	}
	if(this.value != this.defaultValue){
		this.select();
	}
});
$('input.focus').blur(function() {
	if ($.trim(this.value) == ''){
		this.value = (this.defaultValue ? this.defaultValue : '');
	}
});

});	
