$(document).ready(function() {

  /* Apply fancybox to multiple items */
  
  $('a[target="_top"]').fancybox({
    'transitionIn'      :  'elastic',
    'transitionOut'      :  'elastic',
    'speedIn'        :  600, 
    'speedOut'        :  200, 
    'overlayShow'      :  true,
    'titlePosition'      :  'over',
    'hideOnContentClick'   :  true
  });
  
  $('#MainMenu ul').superfish({
    autoArrows:false,
    dropShadows:false,
    delay:1000,                            // one second delay on mouseout 
    animation:{opacity:'show',height:'show'},  // fade-in and slide-down animation 
    speed:'medium',
  });
  
  $('.ToggleArea').hide();
  
  $('.ToggleButton').each(function() {
    $(this).click(function(event) {
      event.preventDefault();
      $(this).parent().find('.ToggleArea').toggle();
    });
  });
  
});

