jQuery(function () {
	$('#nav .menu-item').mouseover(function () {
		$(this).addClass('hover');
	}).mouseout(function () {
		$(this).removeClass('hover');
	});
});
