/*
 * menu.js
 *
 * @author:	Randall Degges
 * @email:	rdegges@gmail.com
 * @date:	1-18-2010
 *
 * This jQuery code controls the menu functionality.
 */

$(document).ready(function() {

	/*
	 * If the user hovers over a menu item, highlight it and make the entire thing
	 * clickable. This makes browsing the site and using the menus more convenient for
	 * users with javascript enabled.
	 */
	$(".menuitem").hover(function() {
		$(this).addClass("menu-selected");
	}, function() {
		$(this).removeClass("menu-selected");
	});

});
