// this js takes the old .leftNavHeader2 anchor tags in the left nav and assigns a unique id to each
$(document).ready(function(){
  $(".leftNavHeader2").each(function (i) {
    i = i+1;
    $(this).attr('id', "left_header_" + i);
   });
});
