(function ($) {

Drupal.behaviors.chaiCartPrimaryMenu = {
  attach: function (context) {
      $("ul#nice-menu-1 li.menuparent").each(function() {
	  $(this).children(':first-child').removeAttr('href');
    });
    $('#block-views-monthly-archive-of-blogs-block ul li').each(function() {
      if ($(this).children().hasClass('active')) {
        $(this).addClass('active');
      }
    });
  }
};

})(jQuery);

;

