jQuery('input').live('focus', function(){
	  $(this).css({'background-color': '#fee000'});
	});
jQuery('input').live('blur', function(){
	  $(this).css({'background-color': '#a0c0f9'});
  });
