$(document).ready(function(){
		
			$('.newspoptabs A').click(function() {
				var A = $(this), span = A.parent();
				if (!span.hasClass('active')) {
					$(span.parent().find('span.active').removeClass('active').find('A').attr('rel'))
						.animate({opacity: 'hide'}, 5, function() {
							$(A.attr('rel')).animate({opacity: 'show'}, 5);
							span.addClass('active');
						});
				}
				return!1;
			});
		
		
		});



