(function ($) {
  /*
   * Blog archive lists are hidden in drop downs
   */
  var $drop_down_list = $('.drop_down_list');

  // Hide it by default
  $('.drop_down_list ul').hide();
  
  // Open it on click
  $('.drop_down_list .control').click(function(){
    var $this = this;
    console.log($this);
    $(this).parents('.drop_down_list').addClass('open');
    $(this).siblings('ul').show();
  });
  // Hide after moving away from panel
  // (note: unable to make this work on blur(), so it's not currently keyboard accessible)
  $('.drop_down_list').mouseleave(function(){
    var $this = this;
    $(this).removeClass('open');
    $(this).find('ul').hide();
  });
  
  // initialize scrollable
  $('.scrollable').scrollable();
  
  // image lightboxes 
  $('img[rel]').overlay();
  
  Shadowbox.init();
  
})(jQuery);
