$(document).ready(function () {
  $('#topTabs li a').each(function(index) {
    if(location.href.indexOf($(this)[0].href) >-1)  {
      $(this).parent().addClass('selected');
      /*this is for IE8 et al */
      $(this).css("background-image", "url('/global/en-us/dynamics/publishingimages/toptabs/tab-s.png')");
    }
  });
});

