$$.extend({
  Heartland : {
    Ready : function()
    {
      $('ul#HeartlandNavigation a').each(
         function() {
           var $file = this.href.split('/').pop();

           if (location.href.indexOf('/' + decodeURIComponent($file)) != -1) {
             $(this).parents('li').addClass('HeartlandNavigationHere');
           }
         }
      );

      if (location.href.indexOf('/About Us/') != -1) {
        $('li#HeartlandNavigationAboutUs').addClass('HeartlandNavigationHere');
      }

      if (location.href.indexOf('/Brands/') != -1) {
        $('li#HeartlandNavigationBrands').addClass('HeartlandNavigationHere');
      }

      if (location.href.indexOf('/Blog/') != -1) {
        $('li#HeartlandNavigationBlog').addClass('HeartlandNavigationHere');
      }
      
      
      $('#HeartlandNavigationStore').removeClass('HeartlandNavigationHere');
    }
  }
});

$(document).ready(
  function() {
    $$.Heartland.Ready();
  }
);