$(function () {
	/*--for load animation on all pages*/
	$("#home, #menu, #about, #events, #contacts").hide();
	$(function () {
		$("#home, #menu, #about, #events, #contacts").show("normal");
	});
	
	/*--to hide all but #events_list for #events page onLoad*/
	$("#concerts, #meetings, #fundraisers").hide();
	
	/*--#events_list functions--*/
	$("#list_concerts").click(function () {
		$("#concerts").toggle("normal");
		$("#meetings, #fundraisers").hide("normal");
	});
	
	$("#list_meetings").click(function () {
		$("#meetings").toggle("normal");
		$("#concerts, #fundraisers").hide("normal");
	});
	
	$("#list_fundraisers").click(function () {
		$("#fundraisers").toggle("normal");
		$("#concerts, #meetings").hide("normal");
	});
	
});

