$(document).ready(
	function()
	{
	
		
//NAV PROGRAMS//		
		$('a.toggle').click(function()
			{
				$(this).parent('div').next('div').toggle();
				return false;
			}
		);
		
				$('a.toggleslow2').click(function()
			{
				$(this).parent('div').next('div').slideToggle('normal');
				return false;
			}
		);
		
				$('a.toggleslow1').click(function()
			{
				$(this).parent('div').next('div').slideToggle('normal');
				return false;
			}
		);
						
				
				
	
	
	
		//about
				$('a.about').click(function()
			{
				$('div.sub:visible').hide();
				$('div#aboutsubnav').toggle('normal');
				

				return false;
			}
		);
				
		//services
			$('a.involvement').click(function()
			{
                $('div.sub:visible').hide();
				$('div#involvementsubnav').slideToggle('normal');

				return false;
			}
		);				
				
		//resources
			$('a.resources').click(function()
			{
			    $('div.sub:visible').hide();				
				$('div#resourcessubnav').toggle('normal');
				return false;
			}
		);	
			
		//alumni
			$('a.alumni').click(function()
			{
				$('div.sub:visible').hide();
				$('div#alumnisubnav').toggle('normal');			
				return false;
			}
		);


		//events
			$('a.events').click(function()
			{
			    $('div.sub:visible').hide();				
				$('div#eventssubnav').toggle('normal');
				return false;
			}
		);
			
			
		//community
			$('a.community').click(function()
			{
			    $('div.sub:visible').hide();				
				$('div#communitysubnav').toggle('normal');
				return false;
			}
		);
			
		//company
			$('a.company').click(function()
			{
			    $('div.sub:visible').hide();				
				$('div#companysubnav').toggle('normal');
				return false;
			}
		);

		
	}
);



