$("document").ready(function() {
							 
							 $(".members").hide();
							 
							 $(".officeLocation").hover(function() {
																 $(this).stop().animate({backgroundColor: '#222'}, 500);
																 }, function() {
								 								 $(this).stop().animate({backgroundColor: '#333'}, 150);
							 });
							 
							 $(".officeLocation").click(function() {
																 $(this).next(".members").slideToggle("fast");
																 
																 }); // close officeLocation click function
														 
							 }); // close document ready function