$(document).ready(function(){
	$('span.notaNIF').css('display', 'none');
	$('span.notaFecha').css('display', 'none');
	
	//notaNIF
	$('input.notaNIF').focus(function(){
		$(this).parent().children('span.notaNIF').fadeIn('normal');
	});
	
	$('input.notaNIF').blur(function(){
		$(this).parent().children('span.notaNIF').fadeOut('normal');
	});
	
	//notaFecha
	$('input.notaFecha').focus(function(){
		$(this).parent().children('span.notaFecha').fadeIn('normal');
	});
	
	$('input.notaFecha').blur(function(){
		$(this).parent().children('span.notaFecha').fadeOut('normal');
	});
});
