$(document).ready( function()
{
	$('.borrar-contenido-cuando-foco').focus(function(){
		if(this.value == this.defaultValue){
			this.value='';
		}
	}
	);
});
