$(function() {
	$("#mainArea :input")
		.focus(function() {
			$(this).css("background-color", "#fefbcf");
		})
		.blur(function() {
			$(this).css("background-color", "#FBFBFB");
		})
});
