/* $Id: jquery.events.js,v 231:98f1c486edc2 2010-03-16 16:47 +1100 sean $
'------------------------------------------------------------------------
' Creation Date: 2010/03/16/
' Copyright: (c) 2010 Symphony Systems
' Written by: Sean Lawless
' Purpose: jquery code for events page
' Usage: Include
' Arguments:
'
' Updates:
' Date       Author         Purpose
'
'------------------------------------------------------------------------*/

$(document).ready(function(){

  //close selected divs on page load
  $('.EventsListWrap').hide();
  
  // 'slow' toggle. by calling sibling, we can use same div for all
  //$('.toggleSlow').click(function(){
  //  $(this).siblings('.mover').toggle('slow');
  //});

  // toggle all stories on page
  $('#EventsListDetails').click(function(){
    $('.EventsListWrap').toggle();
    //return false;
  });

});
