// On document ready...
$(document).ready(function(){
	$('.menuOption').hover(
		function () {
			// Don't do anything with the active menu option.
			if ($(this).hasClass('active')) return;
			
			$(this).addClass('hover');
		},
		function () {
			// Don't do anything with the active menu option.
			if ($(this).hasClass('active')) return;
			
			$(this).removeClass('hover');
		}
	);

	// Make entire menu option clickable so user doesn't have to click only the link.
	$('.menuOption').click(function() {
		// Don't do anything with the active menu option.
		if ($(this).hasClass('active')) return;

		window.location = $(this).find('a').attr('href');
	});
});