$(document).ready(function() {

	$(".error_list").each(function(index, value){
		$(this).css('display', 'none');
		$(this).parent().find('input, select, textarea').css('background-color', '#cc4242');
		$(this).parent().find('input, select, textarea').css('color', '#fff');
	});

});
