 $(document).ready(function(){
   // Your code here
   var pathName = location.pathname;
   //alert(pathName);
   pathName = pathName.replace('/', '');
   $('#topnav li a[href=' + pathName + ']').addClass('active');
   if($('#content h2').size() > 0)
   {
     var sidebarHtml = '<ul>';
     $('#content h2').each(function(n) {
   	 	$(this).attr('id', 'sub_' + n);
		sidebarHtml += '<li><a href="#' + $(this).attr('id') + '">' + $(this).html() + '</li>';
     });
	 sidebarHtml += '</ul>';
	 $('#sidebar').prepend(sidebarHtml);
   }
 });
 //   pathName = pathName.replace(/\/sites\/hct\//, '');
 