//
// Put your jquery code here and include this file in the <head> of your pages.
//

// Use jquery to highlight the correct nav item.
document.write("   <script type='text/javascript'>");
document.write("		$(document).ready(function(){");
document.write("			if( $('#homepage').length > 0 )");
document.write("				$('#nav-major-home').addClass('nav-major-selected');");
document.write("			else if( $('#publications-page').length > 0 || $('#online-publications-page').length > 0)");
document.write("				$('#nav-major-publications').addClass('nav-major-selected');");
document.write("			else if( $('#plays-page').length > 0 )");
document.write("				$('#nav-major-plays').addClass('nav-major-selected');");
document.write("			else if( $('#progress-page').length > 0 )");
document.write("				$('#nav-major-progress').addClass('nav-major-selected');");
document.write("			else if( $('#awards-page').length > 0 )");
document.write("				$('#nav-major-awards').addClass('nav-major-selected');");
document.write("			else if( $('#about-page').length > 0 )");
document.write("				$('#nav-major-about').addClass('nav-major-selected');");
document.write("		});");
document.write("   </script>");
