// this js file should not need to be modified. To change the menu, go to /includes/leftnav.htm

$(document).ready(function()
{
  
  $('#sub_nav li').mouseover(function(){				// styles the hover of <li> items
		$(this).addClass('hover_list'); })
  			.mouseout(function(){$(this).removeClass('hover_list');
	});


	$('#sub_nav li').click(function(){					// expands the <a> to accept a click from the entire <li> item
		window.location=$('a', this).attr('href');						
	});
 
  	$('#sub_nav li a').each(function(){					// indicates active page in navigation
		if(this.href == window.location)  
			$(this).parent().addClass("active_page"); 						  
	});

 
}); 

