$(document).ready(function(){
    $("p.instruct").removeClass('hide'); // 'unhides' a set of instructions by removing the .hide class 
																				 //  from the p(aragraph) 'instruct'
		                                     // couldn't just .show it, 'cause it needs to be hidden from 
																	       // non-js-enabled browsers, first  
		$(".sched_event").hide(); // hides all div's with class "sched_event" at start 
		$(".sched_title").click(function(){ // targets .sched_title with the click function
			$(this).next(".sched_event").slideToggle("fast"); 
			//return false;																 
		});			 																			 // .next() goes to next .sched_event div down the DOM
	});																							 // .slideToggle("fast") toggles next .sched_event div, then iterates .click function
																									 // return false = stop jQuery iteration of .click function when no more .sched_event divs
																									 // that is, if no more .sched_event div's, return false is next instruction and stops function	
																									 
// $("ul.links-faq").hide(); solves the problem of show/hide (or hide/show) for js-enabled and non-js-enabled browsers
// on a section-by-section scale.  I'd originally considered PHP's 'includes' somehow, but realized quickly that
// server-side and client-side would never work together.  Thanks to jQuery, all is well.  																									 