var valor;

$(document).ready(function(){


	$('input:text').focus(function(){
		valor = $(this).val();
		$(this).attr('value','');
	});

	$('input:text').blur(function(){
		if($(this).val()==''){
			$(this).attr('value',valor);
		}
	});

	$('input:password').focus(function(){
		valor = $(this).val();
		$(this).attr('value','');
	});

	$('input:password').blur(function(){
		if($(this).val()==''){
		$(this).attr('value',valor);
	}
	});


});






