jQuery(document).ready(function($){

	$("#nav > li").each(function() {
		$(this).mouseover(function() {
			$(this).addClass('hover');
		});
		$(this).mouseout(function() {
			$(this).removeClass('hover');
		});
	});

});