function accionesInputsFormsClicks()
{
	$('input[type="text"]').focus(function(){
		$(this).css('background-color', '#eee');
	});
	
	$('input[type="text"]').blur(function(){
		$(this).css('background-color', '#fdfff1');
	});
	
	$('textarea').focus(function(){
		$(this).css('background-color', '#eee');
	});
	
	$('textarea').blur(function(){
		$(this).css('background-color', '#fdfff1');
	});
}