// menu functions
$(document).ready(function(){
			// applying the settings
			jQuery('#theMenu').Accordion({
				active: 'h3.selected',
				header: 'h3.head',
				alwaysOpen: false,
				animated: true,
				showSpeed: 400,
				hideSpeed: 400
			});
		});
// officers and director functions
$(document).ready(function(){
			$('div.weiner').hide();
			$('div.boenish').hide();
			$('div.bahr').hide();
			$('div.piper').hide();
			$('div.will').hide();
			$('div.cal').hide();
			$('div.weinertwo').hide();
			$('div.isaacman').hide();
			$('div.woo').hide();
			$('div.hubbard').hide();
			$('div.nicholas').hide();
			$('div.time').hide();
			$('a#showWeiner').click( function() {
    	$('div.weiner').toggle(400);
		return false;
  		});
		$('a#showBoenish').click( function() {
    	$('div.boenish').toggle(400);
		return false;
  		});
		$('a#showBahr').click( function() {
    	$('div.bahr').toggle(400);
		return false;
  		});
		$('a#showPiper').click( function() {
    	$('div.piper').toggle(400);
		return false;
  		});
		$('a#showWill').click( function() {
    	$('div.will').toggle(400);
		return false;
  		});
		$('a#showCal').click( function() {
    	$('div.cal').toggle(400);
		return false;
  		});
		$('a#showWeinertwo').click( function() {
    	$('div.weinertwo').toggle(400);
		return false;
  		});
		$('a#showIsaacman').click( function() {
    	$('div.isaacman').toggle(400);
		return false;
  		});
		$('a#showWoo').click( function() {
    	$('div.woo').toggle(400);
		return false;
  		});
		$('a#showNicholas').click( function() {
    	$('div.nicholas').toggle(400);
		return false;
  		});
		$('a#showHubbard').click( function() {
    	$('div.hubbard').toggle(400);
		return false;
  		});
		$('a#showTime').click( function() {
    	$('div.time').toggle(400);
		return false;
  		});
		});
