$(document).ready(function(){
/* Limpiar - Todos formularios y recordar valor inicial */
	jQuery('input[type="text"], textarea').focus(function() {
		if (this.value == this.defaultValue){ 
	    	this.value = '';
		}
		if(this.value != this.defaultValue){
			this.select();
		}
	});
	jQuery('input[type="text"], textarea').blur(function() {
	    if ($.trim(this.value) == ''){
	    	this.value = (this.defaultValue ? this.defaultValue : '');
		}
	});	
});
