$(document).ready(function(){
	$('.err').click(function(){
			$('.err').fadeOut('slow');
		})
	$('.ok').click(function(){
			$('.ok').fadeOut('slow');
		})
});
