$(document).ready(function() {
						   
//Add LI hover to menus
$("#nav li").hover(
	function(){
		$(this).addClass("hover");
	},
	function(){
		$(this).removeClass("hover");
	});

//Add a Last Item class to a few things
$("#nav ul li:last-child").addClass("lastItem");

});
