$(document).ready(function() {

	// HIDE ALL THE ANSWERS
	$(".newnav li").hide();	

	// MOUSEOVER POINTER TO INDICATE CLICKABLE	
	$(".newsnav li").mouseover(function() {
		$(this).css("cursor","pointer");
	}).click(function() {
		// AND TOGGLE VISIBILITY OF ANSWERS
		$("span.answer",this).slideToggle("fast");
	});
	
	$("#yourchoosing").hide();
	$("#oldernews").click(function() {
		$(this).css("cursor","pointer");
		$("#yourchoosing").slideToggle("fast");
		
		if ($("#oldernews").text() == "Older news") {
			$("#oldernews").text("See our older news");
		} else {
			$("#oldernews").text("Older news");
		}
		
		
	});
});