$(function (){
	$('.nw').each(function (){
		$(this).attr('target','_blank');
		return false;
	});

	setTimeout(function (){
		$('.ok,.error').each(function (){
			$(this).fadeOut('slow');
		})
	},5000);


});