$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 
 // (a little sooner than page load)
  $('#alumni').hide();
  $('#media').hide();


    // hides the slickbox on clicking the noted link
  $('a#a_toggle').click(function() {
	$('#alumni').slideToggle(400);
	return false;
  });
      
    // hides the slickbox on clicking the noted link
  $('a#m_toggle').click(function() {
	$('#media').slideToggle(400);
	return false;
  });
  
});

     

