$(function () {
    var tabsMenu = [];
    var tabContainers = [];
    $('ul.tabsMenu a').each(function () {
      if (this.pathname == window.location.pathname) {
          tabsMenu.push(this);
          tabContainers.push($(this.hash).get(0));
      }
   });
    
    $(tabsMenu).click(function () {
        $(tabContainers).hide().filter(this.hash).show();
        $(tabsMenu).removeClass('selected');
        $(this).addClass('selected');   
        return false;
    }).filter(':first').click();
});
