jQuery(document).ready(function() { 

jQuery('.content_white input:not(select):not(checkbox):not(submit):not(button)').focus(function() {
       jQuery(this).css({'background-color': '#FBF4CD'});
	});
jQuery('.content_white input:not(select):not(checkbox):not(submit):not(button)').blur(function() {
       jQuery(this).css({'background-color': '#FBF4CD'});
	});
/*	
jQuery('.content_red input:not(select):not(checkbox):not(submit):not(button)').focus(function() {
       jQuery(this).css({'color': '#367CBA'});
	});
jQuery('.content_red input:not(select):not(checkbox):not(submit):not(button)').blur(function() {
       jQuery(this).css({'color': '#367CBA'});
	});
*/	
});
