// JavaScript Document

  $(document).ready(function(){	
	
	$("#team").addClass("highlight");
	$("#teamMenu").css({'display' : 'block'});
	 
	// get the value for the file and remove extension
	$name = $.url.attr("file"); 
	$name_trunc = $name.replace('.html', '');
	$name_dtrunc = $name_trunc.replace('team_', '');
	$("li#" + $name_dtrunc).addClass("highlight");

});
  