$(document).ready(function(){
	$('input[type="text"],textarea').focus(function(){$(this).css('background', '#fff')});
	$('input[type="text"],textarea').blur(function(){$(this).css('background', '#f9f9f9')});
});
