jQuery(document).ready(function() {
 
  jQuery(".agendaHeading").click(function()
  {
    jQuery(this).next(".agendaContent").slideToggle(750);
  });
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
	});

	(function($){
	     $.fn.extend({
	          center: function () {
	                return this.each(function() {
	                        var top = ($(window).height() - $(this).outerHeight()) / 2;
	                        var left = ($(window).width() - $(this).outerWidth()) / 2;
	                        $(this).css({position:'absolute', margin:0, top: (top > 0 ? top : 0)+'px', left: (left > 0 ? left : 0)+'px'});
	                });
	        }
	     });
	})(jQuery);
	
	$('#mainWrapper').center();
	$(window).bind('resize', function() {
	$('#mainWrapper').center({transition:300});
	});

});
