// code for navigation

$(document).ready(function() {
	$(".nav").ready(function() { // scan the page for any navigations		
		$(".sub").parent().mouseover(function(){
			$(this).children(".sub").toggle(); // show the sub menu
		});
		
		$(".sub").parent().mouseout(function(){
			$(this).children(".sub").toggle(); // hide the sub menu
		});
	});
	
	// forum navigation
	$(".GSnav").ready(function() { // scan the page for any navigations		
		$(".GSsub").parent().mouseover(function(){
			$(this).children(".GSsub").toggle(); // show the sub menu
		});
		
		$(".GSsub").parent().mouseout(function(){
			$(this).children(".GSsub").toggle(); // hide the sub menu
		});
	});
	
	$("#pageIntro").hide();
	$("#pageIntro").fadeIn("slow");
	$("#pageIntroText").hide();
	$("#pageIntroText").fadeIn("slow");
});
