$(function() {
  // add class to items that have children
  $('#secondary-nav > ul > li').each(function(i,o) {
    if ($(this).find('ul').length > 0) {
      $(this).addClass('hasChildren');
    }
  });
  
  // // click event to expand/collapse nav groups
  // $('.hasChildren > a').click(function(event) {
  //   //event.preventDefault();
  //   
  //   //$(this).parent().toggleClass('open');
  // });
  // 
  // open it back up if we land on the right page!
  
  var path = location.pathname; 
  var child = $('#secondary-nav a[href="' + path + '"]');
  
  if (child.length > 0) {
    $(child).parents('li.hasChildren').addClass('open');
  }
});
