$(document).ready(function() {
	
	$('#nav > li').hover(
		function() {
			$(this).addClass('over');
		},
		function() {
			$(this).removeClass('over');
		}
	);
	


});