window.addEvent('domready', function() {

  var echo = function(object, showAlert) {
    if(typeof console == 'object') {
      console.log(object);
    } else {
      if(showAlert)
        alert(object);
    }
  }

  $$('.part2').grab('divider');

  $$('.navig li').addEvent('mouseenter', function () {
    this.addClass('active');
  });

  $$('.navig li').addEvent('mouseleave', function () {
    this.removeClass('active');
  });

  $$('.navig li').each(function(el) {
    if(el.getElements('a').length == 1) {
      el.addEvent('click', function () {
        location.href = this.getElement('a').get('href');
      });
    }
  });

});
