j$=jQuery.noConflict();

j$(document).ready(function($){
	$('.aboutnav').hide();
	$('.socnav').hide();
	$('.leadernav').hide();
	
	function homeNav(){
		$('.aboutnav').fadeOut("slow");
		$('.socnav').fadeOut("slow");
		$('.leadernav').fadeOut("slow");
                $('.homenav').delay(1200).fadeIn(1000);}
		
	function aboutNav(){
                $('.homenav').fadeOut("fast");
		$('.socnav').fadeOut("fast");
		$('.leadernav').fadeOut("fast");
		$('.aboutnav').delay(1200).fadeIn(1000);}
	
	function leadNav(){
                $('.homenav').fadeOut("fast");
		$('.aboutnav').fadeOut("fast");
		$('.socnav').fadeOut("fast");
		$('.leadernav').delay(1200).fadeIn(1000);}
	
	function socNav(){
                $('.homenav').fadeOut("fast");
		$('.aboutnav').fadeOut("fast");
		$('.leadernav').fadeOut("fast");
		$('.socnav').delay(1200).fadeIn(1000);}
		
	function stopAll(){
                $('.homenav').stop(true, true);
		$('.aboutnav').stop(true, true);
		$('.leadernav').stop(true, true);
		$('.socnav').stop(true, true);}
		
	$('.homehover').hover(homeNav, stopAll);
	
	$('.abouthover').hover(aboutNav, stopAll);
	
	$('.leadershover').hover(leadNav, stopAll);
	
	$('.societyhover').hover(socNav, stopAll);
	
});
