$(document).ready(function() {
	$("#showNews1").click(function() {
		$("#news1").fadeIn("slow");
		$("#news2").fadeOut("slow");
		$("#news3").fadeOut("slow");
	});
	$("#showNews2").click(function() {
		$("#news2").fadeIn("slow");
		$("#news1").fadeOut("slow");
		$("#news3").fadeOut("slow");
	});
	$("#showNews3").click(function() {
		$("#news3").fadeIn("slow");
		$("#news1").fadeOut("slow");
		$("#news2").fadeOut("slow");
	});
});

