$("#pay").click(function() {
	$("#one").fadeIn(600);
	$("#two").fadeOut(0);
	$("#three").fadeOut(0);
	$("#four").fadeOut(0);
});

$("#counsel").click(function() {
    $("#one").fadeOut(0);
	$("#two").fadeIn(600);
	$("#three").fadeOut(0);
	$("#four").fadeOut(0);
});

$("#learn").click(function() {
 	$("#one").fadeOut(0);
	$("#two").fadeOut(0);
	$("#three").fadeIn(600);
	$("#four").fadeOut(0);
});

$("#news").click(function() {
 	$("#one").fadeOut(0);
	$("#two").fadeOut(0);
	$("#three").fadeOut(0);
	$("#four").fadeIn(600);
});
