$(document).ready(function() {
	showNav();
	showNews();
	showEvents();
});

// subnavigation script -------------------------------------------------
function showNav() {
	$(".navSet ul").hide();
	$(".navSet").hover (
		function () {
			$(this).find("span").addClass("navHover");
			$(this).find("ul").slideDown("fast");
		}, function () {
			$(this).find("span").removeClass("navHover");
			$(this).find("ul").slideUp("fast");
		}
	);
}
// news display script -------------------------------------------------
function showNews() {
	$(".newsbox .all").hide();
	$(".newsbox .readmore strong").css("display", "block");
	$(".newsbox .readmore strong").click(function (){
		$(this).hide();
		$(".newsbox .all").slideDown();
	});
}
// events display script -----------------------------------------------
function showEvents() {
	$(".pEvents .all").hide();
	$(".pEvents .readmore strong").css("display", "block");
	$(".pEvents .readmore strong").click(function (){
		$(this).hide();
		$(".pEvents .all").slideDown();
	});
}