$(document).ready(function(){
	$("input").focus(function () {$(this).animate({ 
		backgroundColor: "#E2E2E2"
	}, 100 );
	}).blur(function() {$(this).animate({ 
		backgroundColor: "#99999"
	}, 100 );
	}).keyup(function (e) {
      if (e.keyCode == 9) {
        $(this).animate({backgroundColor: "#E2E2E2"}, 100 );
      }
    }).keydown(function (e) {
      if (e.keyCode == 9) {
        $(this).animate({backgroundColor: "#999999"}, 100 );
      }
    });
	$("textarea").focus(function () {$(this).animate({ 
		backgroundColor: "#E2E2E2"
	}, 100 );
	}).blur(function() {$(this).animate({ 
		backgroundColor: "#99999"
	}, 100 );
	}).keyup(function (e) {
      if (e.keyCode == 9) {
        $(this).animate({backgroundColor: "#E2E2E2"}, 100 );
      }
    }).keydown(function (e) {
      if (e.keyCode == 9) {
        $(this).animate({backgroundColor: "#999999"}, 100 );
      }
    });
});