$(document).ready(function(){

	/* This is the back button friendly tab switcher */
	var trackContainers = $('.switcher > .results');
  trackContainers.hide().filter(':first').show();
  
  $(window).bind('hashchange', function () {
    var hash = window.location.hash || '#sri';
    
    trackContainers.hide();
    trackContainers.filter(hash).show();
    $('ul.tabs li').removeClass('active');
    $('a[hash='+hash+']').parent().addClass('active');
  });
  
  $(window).trigger("hashchange").location(hash);
	
});
