jQuery(function($) {
	
	$('.section_toggle').click(function(){
     $(this).parent().next('.section_box').slideToggle(200);
     return false; 
  });
  
  $('.subsection_toggle').click(function(){
     $(this).next('.subsection_box').slideToggle(200);
     return false; 
  });
  
  $('a.lightbox').lightBox();
	
});