/*
 * jQuery Navigation Menu
 * 
 */
(function($){
  $.fn.extend({
    navigation: function(options) {
      $(this).find("li.main_menu_item a[href=" + window.location.pathname + "]").addClass("active");
      
      /*expand menu
      var defaults = {
        speed: 300
      }
      
      // setup configuration
      options = $.extend(defaults, options);
    
      // drill down to active item
      $(this).find("li.main_menu_item a[href=" + window.location.pathname + "]").addClass("active").each(function() {
        $(this).parents("ul.main_menu").slideDown(options.speed);
      });

      // hover intent
      $(this).find("li a").hoverIntent(function() {
        if($(this).parent().find("ul.main_menu").size() != 0) {
          if($(this).parent().find("ul.main_menu").is(":visible")) {
            $(this).parent().find("ul.main_menu").slideUp(options.speed, function(){});
          } else {
            $(this).parent().find("ul.main_menu:first").slideDown(options.speed, function(){});
          }
        }
      }, function(){});
      */
    }
  });
})(jQuery);
