

var list = [];

$(document).ready(function () {		
	list = $('input:text,textarea');
	list.each(function(i) {				
		$(this).focus(function(){
			$(this).animate({
				backgroundColor: '#CCFFFF',
				color: '#000000'
			},200);
		});
		 
		$(this).blur(function(){
			$(this).animate({
				backgroundColor: '#F3F3F3',
				color: '#888'
			},200);
		});
	});
});    