$(document).ready(function(){
	$(".error_list").each(function(){
		$(this).mouseover(function(){
			$(this).fadeOut(300);
		});
	});
});
