(function($){
	
	$(document).ready(function(){
		
		$('#nav li')
			.bind('mouseenter', function(){
				$(this).addClass('hover');
			})
			.bind('mouseleave', function(){
				$(this).removeClass('hover');
			});
		
	});
	
})(jQuery);