$(document).ready(function(){
	$("input, textarea").focus(function(){
		$(this).css("background","#ffd18c");
	}).blur(function(){
 		$(this).css("background","#FFE8C6");
	});

});
