// JavaScript Document
window.onload = function() {
    
  var safeHash = location.href.split('#');
  //alert(safeHash.length);
  if(safeHash.length == 2   && document.getElementById(safeHash[1]) != null) {  
     var urlID = document.getElementById(safeHash[1]);
      //alert(urlID);
      window.scrollBy(0,-120);
   
  }
  
  

}
