$(document).ready(function(){
		var guardo;
			
		$('input[name="nombre"]').focus(
				function(){
					guardo = $(this).attr('value');
					$(this).attr('value', '');
				}
			);
		$('input[name="nombre"]').blur(
				function(){
					if($(this).attr('value')==''){
						$(this).attr('value', guardo);
					}
				}
			);
		
		$('input[name="codigo"]').focus(
				function(){
					guardo = $(this).attr('value');
					$(this).attr('value', '');
				}
			);
		$('input[name="codigo"]').blur(
				function(){
					if($(this).attr('value')==''){
						$(this).attr('value', guardo);
					}
				}
			);
	});
	 
