// JavaScript Document

jQuery(document).ready(function(){
var myFile = document.location.toString();
if (myFile.match('#')) { // the URL contains an anchor
  // click the navigation item corresponding to the anchor
  var myAnchor = '#' + myFile.split('#')[1];
  $('a[href="' + myAnchor + '"]').click();								  
} else {
  // do nothing
}
});
