jQuery(document).ready(function() {
	workMenu();
});

function workMenu() {
	
	
  var currentWindow = window.location.href;
	var workLeftNav = document.getElementById('work-left');
	var anchorTags = workLeftNav.getElementsByTagName('a');
		
    //Highlight selected nav item based on URL of page
  for (var i = 0; i < anchorTags.length ; i++) {
		if (anchorTags[i].href == currentWindow) {
	  anchorTags[i].style.fontWeight = 'bold';
	  anchorTags[i].style.color = '#004a91';
    }	
  }
}

