$(document).ready(function () {
  
  	//Clear Form Field on Focus
  	$('.clearme').one("focus", function() {
  		$(this).val("");
	});
	
	$('#printpage').click(function() {
		window.print();
		return false;
	});

	
	//Members Subnav
	
	//$('.submenu').hide();
	
	
	
	$('a.expandnav').click(function() {
				
		if ($(this).parent().find('.submenu').css('display') == 'none') {
		
			$('.submenu').hide();
			$(this).parent().find('.submenu').show();
		
		} else {
		
			$(this).parent().find('.submenu').hide();
		
		}
		return false;
	
	});
	
});

